Mac Microsoft Word Remove Hyperlink

06.04.2020by

Sometimes you may find some Microsoft Office Word documents from your colleagues contain some hyperlinks, once you click the hyperlink, you would be directly linked to some websites. Sometimes this is funny, but sometimes not, so you may want to find some ways to remove all hyperlinks in Word. Here I would demonstrate some ways to remove hyperlinks in Word.

For a Microsoft Word 98 Macintosh Edition version of this article, see 211955. This article answers the most frequently asked questions about creating and using hyperlinks in Microsoft Word 2002 and in later versions of Word. Remove or turn off hyperlinks. You can remove a hyperlink from a single address, remove many links at once, turn automatic hyperlinks off, and turn off the requirement to press Ctrl to follow a hyperlink. In Word 2007, click the Microsoft Office button Word Options Advanced.

A hyperlink in a Microsoft Word document enables readers to jump from the link to a different place in the document, to a different file or website, or to a new email message.In Word documents, hyperlink text is a different color than other text and is underlined. When you hover over a hyperlink. 2020-4-3  It’s great but it has its limitations i.e. It won’t remove hyperlinks in a document. In MS Excel, the clear formatting button is almost hidden but it’s actually a lot better than the one in MS Word. This clear formatting button lets you remove all hyperlinks from an Excel sheet, or from the selected cells. Jan 10, 2019 Hi, today we are discussing on how to show or hide hyperlink field codes in MS Word. Lot of person use Microsoft Word to finish his day to day routine official jobs but lot of time they have to face different type of problems and if they don’t get the solution of his official problem then they have to fell guilty when talk to his boss.

Way 1: Remove hyperlinks one by one

Step 1: Launch the Word, find and right-click the hyperlink. In the coming menu list, click Remove Hyperlink.

Way 2: Remove hyperlinks by shortcuts

Step 1: Select the target Word document, then press Ctrl+ A key at same time.

Word

Step 2: Press Ctrl+ Shift+ F9.

Way 3: Remove hyperlinks with VBA

Step 1: Open the target Word document, then press Alt+F11 keys at same time to open Microsoft Visual Basic for Application.

Step 2: Click the Insert item on the top bar of the coming window, select Module in the next menu list.

2020-3-18  In Microsoft Word for Mac 2011, I'm trying to edit the Hyperlink and FollowedHyperlink styles so that they don't modify the text's color that I'm hyperlinking. For example, let's say I have the following words: red blue green all written in thier corresponding colors. Next, I decide to highlight these words and hyperlink. 2020-3-31  For a Microsoft Word 98 Macintosh Edition version of this article, see 211955. This article answers the most frequently asked questions about creating and using hyperlinks in Microsoft Word 2002 and in later versions of Word.

Step 3: Copy and paste the following VBA code into the Module window.

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

Note: The above codes are to remove hyperlinks in current Word document. If you want to remove the hyperlinks in all opened Word documents. Just type the under words into Module window.

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

Step 4: Click the Run Sub button to run the script.

Related Links:

Word document formatting can come in a variety of different options, so whether you need to double space your document or customize your page numbering, you are likely to find out that there are a considerable number of different menus for styling.

But one of the harder elements of a document to format are the hyperlinks that your readers can click to visit Web pages. Our guide below will show you how to adjust the formatting for the hyperlinks you have created by removing the underline. Microsoft office 2019 download mac.

Removing the Underline from a Hyperlink in Word 2013

The steps below are going to adjust the styling of your document so that the underline is removed from all of the hyperlinks. The hyperlink will remain whatever color it currently is. You can remove a hyperlink entirely if you do not want people to be able to click the link in your document.

Here is how to remove the underline from a hyperlink in a Word 2013 document –

  1. Open the document in Word 2013.
  2. Click the Home tab at the top of the window.
  3. Click the small button at the bottom-right corner of the Styles section in the ribbon.
  4. Click the arrow to the right of Hyperlink in the Styles pop-up menu, then click the Modify option.
  5. Click the Underline button in the Formatting section of the window, then click the OK button to apply the change.

These steps are repeated below with images –

Step 1: Open the document containing the hyperlink(s) that you wish to modify.

Step 2: Click the HomeMac microsoft malware removal. tab above the ribbon.

Step 3: Click the small Styles button at the bottom-right corner of the Styles section of the ribbon.

Step 4: Click the drop-down arrow to the right of Hyperlink in the Styles pop-up menu, then click the Modify option.

Step 5: Click the Underline button in the Formatting section at the center of the window, then click the OK button at the bottom of the window to apply your changes.

Note that this will only remove the underline for regular hyperlinks. If you also wish to remove the underline from followed hyperlinks, then you will need to click the Options button at the bottom of the Styles pop-up menu –

The click the drop-down menu under Select styles to show, click the All styles option, then click the OK button.

Scroll down to the FollowedHyperlink option in the Styles pop-up menu, click the drop-down arrow to the right of it, then click the Modify option.

Click the Underline button at the center of the window, then click the OK button.

You should now have a document where the clicked and unclicked hyperlinks are both not underlined.

Another hyperlink issue that you might encounter occurs when Word 2013 will try to create a hyperlink for anything that is in the format of a Web page address. Learn how to disable this automatic hyperlinking so that you can enter URLs as plain text.

Disclaimer: Most of the pages on the internet include affiliate links, including some on this site.

Comments are closed.