Email as hyperlink-Additional Info

  • Thread starter Thread starter DD
  • Start date Start date
D

DD

PS. Sorry about 2nd post but I neglected to tell you I
tried to use an update query - email field = "MailTo:&
and the email field appears correct but simply
does not work when I run the query to update the email
field. It seems I have to retype the email field manually.
This is not the end of the world - I only have to manually
update about 100 fields but the most important is to not
force the user to manually enter the mailto: part of the
email address. Thanks!
 
The update query should look something like

UPDATE MyTable Set MyTable.EmailField = "Mailto:" & MyTable.EmailField
 
Back
Top