Thread: [Solved] Get rid of links
View Single Post
 
Old 04-17-2017, 11:24 PM
louiseL louiseL is offline Windows 7 64bit Office 2010 32bit
Novice
 
Join Date: Apr 2017
Posts: 2
louiseL is on a distinguished road
Default

Hi,Lrrryo

If you you mean the hyperlinks, here are 3 ways you can try.

1. You can just copy the whole text and paste them as “Unformatted Text”. This will remove all links.

2.Use “Replace” Feature
Pressed “Alt + F9” to change to the “Link” view--->Type “^d HYPERLINK” in “Find what” text box-->click “Replace All"

3.Use Macro
The code is below:

Code:
Sub RemoveLinks()
    While ThisDocument.Hyperlinks.Count > 0
     ThisDocument.Hyperlinks(1).Delete
   Wend
 End Sub
Hope it helps.
Reply With Quote