How to remove all hyperlinks from a Word document?

How to remove all hyperlinks from a Word document?

Well, if you ever come across with an user that wants to remove all the hyperlinks from a Microsoft Word document, then here is how you can do it.

1 – Highlight all the ‘Text’ from the document by pressing Ctrl+A

2 – Press Ctrl+Shift+F9 <— this will remove all hyperlinks from the document.

Another way is to run a Macro by looping though the list

e.g. Copied from another site

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