bcooler
Programmer
- Jun 13, 2009
- 132
Thanks for reading this question!
I have a subform with an existing hyperlink which works well. The customer wants to see the word "MSDS" instead of the actual hyperlink. I tried to create a new field in the subform with the following source code:
where [Location] is the field that contains the actual hyperlink.
When I open the form, the "MSDS" is in blue, is clickable, and when clicked, gives me a, "Microsoft Office Access can't follow the hyperlink to 'M:\Functions\EHS\MSDS\12311.pdf'. Please verify the destination".
So, 2 things I noticed. First, it did recognize the "[Location]" hyperlink info. Second, the single quote is showing up in the error box while the original hyperlink does not have these 2 single quotes.
I am assuming that I need to get rid of the single quote, but don't know how. I've tried every combination of double quote, "#", etc without a solution.
Thanks in advance!
I have a subform with an existing hyperlink which works well. The customer wants to see the word "MSDS" instead of the actual hyperlink. I tried to create a new field in the subform with the following source code:
Code:
="MSDS#" & [Location] & "#"
where [Location] is the field that contains the actual hyperlink.
When I open the form, the "MSDS" is in blue, is clickable, and when clicked, gives me a, "Microsoft Office Access can't follow the hyperlink to 'M:\Functions\EHS\MSDS\12311.pdf'. Please verify the destination".
So, 2 things I noticed. First, it did recognize the "[Location]" hyperlink info. Second, the single quote is showing up in the error box while the original hyperlink does not have these 2 single quotes.
I am assuming that I need to get rid of the single quote, but don't know how. I've tried every combination of double quote, "#", etc without a solution.
Thanks in advance!