how do you remove all hyperlinks at once

  • Thread starter Thread starter Guest
  • Start date Start date
To manually unlink the hyperlink fields, you can select them and press
Ctrl+Shift+F9. Note that if the selection includes any other fields,
such as SEQ fields (used by Word's caption feature) or REF fields
(used in cross-references), these will also be unlinked. To prevent
this from happening, you may want to try the following macro, which
will remove the hyperlinks, but preserve the hyperlinked text:

Do While ActiveDocument.Hyperlinks.Count > 0
ActiveDocument.Hyperlinks(1).Delete
Loop

If you are unfamiliar with macros, see the instructions at
http://gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


in message
news:[email protected]...
 

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