![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I had data set up as MailTo hyperlinks. I broke up a large table into three tables but discovered all the MailTo hyperlinks are now just web address hyperlinks. Opening up Outlook by selecting the hyperlink is very useful. I found some vba code for an Excel macro that works well but am unsure within Access 2003 what to do. Sub test() Dim mycell As Range For Each mycell In Columns("B").Cells.SpecialCells(xlCellTypeConstant s) If mycell.Value Like "?*?*.?*" Then ActiveSheet.Hyperlinks.Add Anchor:=mycell, _ Address:="mailto:" & mycell.Value, TextToDisplay:=mycell.Value End If Next End Sub Regards Ron de Bruin Any suggestions? |
![]() |
| Thread Tools | |
| Display Modes | |
| |