Tuesday, September 15, 2009

Hyperlinks - removing all from a word document

"select all" and hitting "Ctr + space bar" which removed the hyperlinks.
ctr+shift+f9

Here is a macro I found in my travels that might just solve your problem.

I can't give you any support since macros are not my thing but will share this with you.

Sub RemoveHyperLinks()
'
' RemoveHyperlinks Macro
' Macro created August 25, 2002 by Dale Wiley
'

With ActiveDocument
Do Until .Hyperlinks.Count = 0
.Hyperlinks(1).Delete
Loop

' Verify how many hyperlinks are left in the document
MsgBox .Hyperlinks.Count
End With

End Sub

No comments:

Post a Comment