attroll Posted January 7, 2006 Posted January 7, 2006 I created a document a long while back in word with numerous hyperlinks in it. But since then one of the hyperlinks has changed and I have to go through the whole document and find all the hyperlinks with this address and change them all. Is there was way to do a Find and Replace for the hperlink itsself without doing them one at a time? I know you can do it with text in the document but can you do the same thing with the hyperlink?
cypher_soundz Posted January 21, 2006 Posted January 21, 2006 (edited) I created a document a long while back in word with numerous hyperlinks in it. But since then one of the hyperlinks has changed and I have to go through the whole document and find all the hyperlinks with this address and change them all. Is there was way to do a Find and Replace for the hperlink itsself without doing them one at a time? I know you can do it with text in the document but can you do the same thing with the hyperlink?Yup it shouldn't be too hard to code it in VBA . For Each hLink In Documents(1).Hyperlinks ' where documents(1) is your docuement If InStr(hLink.Address, "YOURHYPERLINK") <> 0 Then hLink.address = "NEW HYPERLNIK" End IfNext hLinkHope this helps Regardscyph Edited January 21, 2006 by cypher_soundz
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now