Find and Replace hyperlink address w/Text to display Access 2013

funwithaccess

Registered User.
Local time
Today, 13:26
Joined
Sep 5, 2013
Messages
80
Hi everyone,

In the Access Table, how does one Find and Replace part of the hyperlink if the Text to display is different?

Example of Hyperlink Editor:
UF0o9EN.jpg


Example of Find and Replace
S99gkzj.jpg


In other words, I'd like to find \\\FAKESERVER\ and replace it with C:\Users\ in all 1000 records. Is there any possible way to do this if there is Text to display?
 
Not AFAIK. Create an update query, and use the HyperlinkPart method (look it up in the docs) to change the offending part.

I hardly ever use fields of Hyperlink type, because you can accomplish the same thing using a normal text field (or two) and the FollowHyperlink method
 
Hyperlink and Alias as field names is a bad choice.

Convert the hyperlink field to text and you'll see the different parts, i.e.
[Hyperlink] & ""
 

Users who are viewing this thread

Back
Top Bottom