A text with too many hyperlinks will make people confused and sometimes a wrong click makes them uncomfortable. So how to remove hyperlink in Word most effectively? Let Download.com.vn show you a few tips below.
In fact, hyperlinks are sometimes the quickest and most convenient way for readers to understand something. Because if you are not sure, the links in Word are the links (website addresses) that are inserted in the article, and when the recipient, the reader clicks on them, they will be taken to a certain website. .
Summary of ways to delete links in Word
However, these links do not always work, and sometimes people want to remove them for various reasons.
Word 2016 Microsoft Word for Android Microsoft Word for iOS
Delete all links in Word
There is an extremely fast and convenient way for you to immediately delete all links in Word documents, which is to highlight the whole text, then press CTRL + SHIFT + F9 . This method is fast, convenient and applicable to all versions of Microsoft Office .
Video tutorial to delete all links in Word
Delete all hyperlinks in Word with code
Another way we can use it is at the text interface that needs to delete the link, click Insert / Module , then insert some code into it like:
Delete all existing links in the open document:
Sub KillTheHyperlinks()
' -----------------------------------------------
' Removes all hyperlinks from the document:
' Text to display is left intact
' -----------------------------------------------
With ThisDocument
' Loop while there are hyperlinks afoot!
While .Hyperlinks.Count > 0
.Hyperlinks(1).Delete
Wend
End With
' Shut this off, don't need anymore popping up
Application.Options.AutoFormatAsYouTypeReplaceHyperlinks = False
End Sub
Delete the entire path in all current text:
Sub KillTheHyperlinksInAllOpenDocuments()
' -----------------------------------------------
' Removes all hyperlinks from any open documents
' Text to display is left intact
' -----------------------------------------------
Dim doc As Document
Dim szOpenDocName As String
' Loop through all open documents:
For Each doc In Application.Documents
' Store the document name
szOpenDocName = doc.Name
' Remove the hyperlinks from that document
With Documents(szOpenDocName)
' Loop while there are hyperlinks afoot!
While .Hyperlinks.Count > 0
.Hyperlinks(1).Delete
Wend
End With
' Shut this off, don't need anymore popping up
Application.Options.AutoFormatAsYouTypeReplaceHyperlinks = False
Next doc
End Sub
Delete hyperlinks in Word
In case we want to delete the individual links, you only need to open the Word document to remove the link, then right-click on it and select Remove Hyperlink as shown below.
Or if you notice, when we copy and paste a web address into Word, instead of displaying text as usual, it will automatically turn into a hyperlink. This is essentially an automatic feature and the Word office tool is set by default.
To change this, you can "block" it from pasting into your text by, when right-clicking to paste the path into Word, we click the down arrow icon and select Keep Text Only . But if the text you receive already has links of this type, you can refer to the following:
Step 1 : From the main interface of the document that needs to remove the link link, left-click on File .
Step 2 : Click on Options below.
Step 3 : Word Options window appears, select " Proofing ".
Step 4 : Select AutoCorrect Options .
Step 5 : Another dialog box appears, left click on AutoFormat As You Type .
Step 6: Uncheck the " Internet and network paths with hyperlinks " and then OK to save this change.
We will see the web addresses in this article will be displayed as normal text and from now on, all links of this type will not be displayed in the article.
Remove link in Word with software
If you do not want to use the above tips and trust effectively from a third-party support software, you can download and install Kutools .
After the installation is complete, it will appear in Word as a menu card, when needed, just click on it and select More / Remove Hyperlinks .
However, in many cases, you will need to adjust the format and font for your data.
Disable links in Word on Mac
For those who are using Office on a Mac and want to del hyperlink on a Mac, there are two possible ways:
Method 1 : Right-click the link to be deleted and select Hyperlink / Remove Hyperlink .
Method 2 : Or you can do the same with Word for Windows, highlight the whole text or paragraph containing the link group to delete, and then use the key combination FN + COMMAND + SHIFT + F9 .
In addition to the above two ways, we can also use software for Macs, but it is probably not necessary when the two ways have brought almost absolute efficiency.