Hyperlinks

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

Guest

I want to remove hyperlinks from a huge list, but I do not want to do it one
at a time, how can I remove them all at once?
 
Unless someone can provide you with a Macro, the only suggestion I can offer
is to use Find & Replace. That should work well enough if all of the
hypelinks are consistant in some way... such as email addresses with @ within
them or URLs starting with http://. In the Find & Replace dialog box click
the More button and use the Special list as appropriate.

HTH |:>)
 
Use a macro

Sub DeleteHyperlinks()
Dim oHlink As Hyperlink, i As Long

For i = ActiveDocument.Hyperlinks.Count To 1 Step -1
ActiveDocument.Hyperlinks(i).Delete
Next i
End Sub


http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Do you actually want to delete the hyperlinks or just unlink them?

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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