Hyperlinks

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to delete all hyperlinks in a document, all at once? Thanks
 
JoAnn,

Problem with that method is that is turn "all" selected field to plain text
not just hyperlink fields.

You can use a macro something like this:

Sub DeleteHyperlinks()
Dim i As Long
For i = ActiveDocument.Hyperlinks.Count To 1 Step -1
ActiveDocument.Hyperlinks(i).Delete
Next i
End Sub
 
Thankyou!.. I am not to familiar with macros yet. Where / how do I apply it?
 
Glad to help! :-)

--

JoAnn Paules
MVP Microsoft [Publisher]



nastech said:
Thankyou!..

JoAnn Paules said:
A *quick* search on Google yielded:

Frequently asked questions about hyperlinks in Word 2002
http://support.microsoft.com/?kbid=291182

To remove all hyperlinks in a document, press CTRL+A to select the entire
document and then press CTRL+SHIFT+F9.


--

JoAnn Paules
MVP Microsoft [Publisher]



nastech said:
Is there a way to delete all hyperlinks in a document, all at once?
Thanks
 

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

Back
Top