Breaking Links in Lots of Documents

Written by Allen Wyatt (last updated April 15, 2023)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021


Ian has many, many documents that include links to other documents. (These are not hyperlinks; they are actual document links in Word.) He needs to break those links, and he knows that he can load the documents and break the links one by one. He wonders, though, if there is a macro available that could go through all the documents in a folder and automatically break all the links within those documents.

Manually, you can break links by following these steps:

  1. Click the File tab of the ribbon.
  2. Make sure that Info is selected at the left side of the screen.
  3. At the bottom-right side of the screen, under the Related Documents category, click Edit Links to Files. (If this option is not available, it means that Word doesn't think there are any links in the current document.) Word displays the Links dialog box. (See Figure 1.)
  4. Figure 1. The Links dialog box.

  5. Select the link you want to break.
  6. Click on Break Link. You are asked to confirm your action.
  7. Click on OK.

The steps are a bit different if you are using Word 2007:

  1. Click the Office button and then click Prepare.
  2. Click Edit Links to Files. (If this option is not available, it means that Word doesn't think there are any links in the current document.) Word displays the Links dialog box.
  3. Select the link you want to break.
  4. Click on Break Link. You are asked to confirm your action.
  5. Click on OK.

As you can tell, this process is rather labor intensive, particularly if you have lots of documents and each document has multiple links. The labor-intensive nature of the process is why Ian was searching for a way to break the links under control of a macro.

In order to do this in a macro, the macro needs to open each document in the folder, break any links it finds, and then save the document. Figuring out how many documents are in a folder, opening them, and closing them is rather straightforward. If you want to break the links, the macro needs to look through each field in the document and break only those that use the LINK field. The following macro shows how this is done.

Sub RemoveLinks()
    Dim fleArray() As String
    Dim flCount As Long
    Dim k As Long
    Dim fle As String
    Dim fld As Field
    Dim currentFileName As String
    Dim docPath As String
    Dim bDirty As Boolean

    docPath = ActiveDocument.Path & "\"
    currentFileName = ActiveDocument.Name

    fle = Dir(docPath & "*.doc*")
    flCount = -1
    ReDim fleArray(0)
    Do While fle <> ""
        flCount = flCount + 1
        ReDim Preserve fleArray(flCount)
        fleArray(flCount) = fle
        fle = Dir()
    Loop

    If MsgBox("There are " & flCount + 1 & " files to be processed." _
      & vbCrLf & "Do you want to continue?", vbYesNo, "Break links") _
      = vbNo Then Exit Sub

    For k = 0 To UBound(fleArray)
        fle = fleArray(k)
        Options.UpdateLinksAtOpen = False
        Documents.Open FileName:=docPath & fle
        Options.UpdateLinksAtOpen = True
        bDirty = False
        For Each fld In ActiveDocument.Fields
            If fld.Type = wdFieldLink Then
                ' Uncomment the following if link needs to be updated
                ' before the link is broken
                ' fld.LinkFormat.Update
                fld.LinkFormat.BreakLink
                bDirty = True
            End If
        Next fld
        If bDirty Then ActiveDocument.Save    ' Only save if links broken
        If ActiveDocument.Name <> currentFileName Then ActiveDocument.Close
    Next k
End Sub

Notice the For Each loop that looks at each field (fld) in the Fields collection. It checks to make sure that the field's Type property is equal to wdFieldLink, which means it is a LINK field. If so, the code uses the BreakLink method with the LinkFormat property for the field, effectively removing the link.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (2357) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Indexing Based on a Range of Letters

Word provides many options for creating indexes. One option allows you to specify that the index contain only entries ...

Discover More

Aligning a Paragraph in a Macro

If you are applying formatting from within a macro, you may want to change the alignment of various paragraphs. Here's ...

Discover More

Stopping Fields from Updating when Printing

Fields provide a great way to add dynamic content to your documents. If you don't want those fields to update when you ...

Discover More

Learning Made Easy! Quickly teach yourself how to format, publish, and share your content using Word 2013. With Step by Step, you set the pace, building and practicing the skills you need, just when you need them! Check out Microsoft Word 2013 Step by Step today!

More WordTips (ribbon)

Changes to Header Result in a Hung Computer

If you try to perform some actions in a document and those actions result in Word freezing, then your document may well ...

Discover More

Opening a Document as Read-Only

Afraid of messing up an existing document by some changes you are considering? Consider opening the document as ...

Discover More

Determining if a Document is Corrupt

Think you might have a corrupt document? There is no easy way to tell if this is the case, but there are some things you ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is four less than 7?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.