How to remove all Hyperlinks in Word fastest
Removing Hyperlinks in Word not only makes your document neater but also avoids unwanted formatting errors. Here are two simple ways to do it.
How to delete all Hyperlinks in Word
Method 1: Using Visual Basic code
This method is suitable when you want to remove all Hyperlinks in the entire document automatically.
Step 1: Open the Word document you need to edit:
Then press Alt + F11 to open the Microsoft Visual Basic window .
Step 2: In the Visual Basic window, select Insert -> select Module .
Step 3: Copy the code below:
Sub LoaiboHyperlink()
Dim As Long
For i = ActiveDocument.Hyperlinks.Count To 1 Step -1
ActiveDocument.Hyperlinks(i).Delete
Next i
End Sub
Then paste into the Module you just opened and press F5 or click on the Run icon to execute.
Step 4: Close the Microsoft Visual Basic window , return to the text -> you will see all Hyperlinks have been removed.
Method 2: Use the key combination Ctrl + Shift + F9
This method is simpler and faster than using Visual Basic Module.
Step 1: Select (highlight) the text you want to remove the Hyperlink from.
Step 2: Press the key combination Ctrl + Shift + F9 .
So you know how to quickly remove Hyperlinks in Word. If you want to remove all Hyperlinks in the document, use Visual Basic. If you only need to remove a part, the key combination Ctrl + Shift + F9 will be the optimal choice.
In addition to Word, you can also apply similar methods to delete Hyperlinks in Excel. If interested, please refer to the article on how to delete Hyperlinks in Excel for more details. Good luck!
You should read it
- How to open links in Word, Outlook does not need the Ctrl key
- Lesson 20: Working with Hyperlinks
- Create Hyperlink in Word
- Word 2013 Complete Guide (Part 11): How to create hyperlink links
- How to disable Hyperlink in Excel
- How to create Hyperlink to link spreadsheets in Excel
- PowerPoint 2016: Hyperlink in PowerPoint
- How to create suggestions for Hyperlink in Excel
May be interested
- The simplest way to insert images into the Comment box in Excelinserting images into the comment box in excel helps display images as soon as you hover over the cell containing data, making it convenient for managing records. this article will guide you through the steps in simple steps, applicable to popular versions of excel.
- How to insert Text Box in Word simply, anyone can do ittext box in word helps you create a prominent text frame, increasing the aesthetics of the text. with just a few simple steps, you can insert and customize the text box as you like. let's find out how to do it right after.
- Instructions for connecting and merging multiple Excel files into 1 file easilymerge multiple excel files into one file to manage data conveniently and save time. you can use vba or the move/copy feature to do it. below are detailed step-by-step instructions.
- How to copy formulas and data between Excel tables quicklycopying formulas and data between excel tables helps you work more efficiently without having to re-enter them manually. depending on your needs, you can use keyboard shortcuts or advanced features to ensure accurate copying. let's explore effective ways to do it in this article.
- How to copy and move Sheets in Excel simply and easilycopying and moving sheets in excel is an important operation to help manage data effectively. this article will guide you through quick, simple ways to do it, suitable for many versions of excel.
- 3 Ways to Convert CSV to Excel Successfullycsv is a popular data format but it is not easy to work with without the right tools. this article will guide you through the simple and optimal way to convert csv to excel, helping you quickly summarize data.