adding hyperlinks to query results

T

tgwarrior

I have two fields, one with a name, one with an email
address. (Not all
recordsets include an email address for the person's name.)

Ideally, I'd like to have the query add
a "mailto:<address>" HTML tag for
every name that also has an email address. Can that be
done?

Thank you for your assistance!

michael munson
(e-mail address removed)
 
V

Van T. Dinh

Use a Calculated Field in your Query:

MTAdd: IIf(IsNull([Address]), "",
"MailTo:" & [Address])

HTH
Van T. Dinh
MVP (Access)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top