
Laura W. answered 05/17/19
Microsoft Office Trainer and Author
On the Developer tab, click on Visual Basic.
When the Visual Basic window opens, click on Insert > Module.
When the new module appears, copy and paste the following code:
Sub ApplyHyperlinkStyleToAllLinksInDoc()
For Each link In ActiveDocument.Hyperlinks
link.Range.Style = ActiveDocument.Styles(“Hyperlink”)
Next
End Sub
Now you can close the Visual Basic Editor, go to the Developer tab and choose Macros. Highlight the ApplyHyperlinkStyleToAllLinksInDoc macro and click on Run.
This will re-apply the default hyperlink style to all your links.