Export to Excel

J

John Nurick

Hi Ann,

Are the addresses stored in a hyperlink field in Access? If so, try
creating a query with a calculated field
Tmail: HyperlinkPart(, 0)
to return the hyperlink field contents as text.

If necessary, experiment with different values instead of 0 (1,2,3 or 4
perhaps). These correspond to the named constants described in VBA help
for the HyperlinkPart function, but you have to use the actual numeric
values if you call the function in a query.
 
Top