Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021. If you are using an earlier version (Word 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Word, click here: Turning Track Changes Off for Selected Areas.

Turning Track Changes Off for Selected Areas

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


Carl's office makes extensive use of the Track Changes feature in Word, with the documents going through multiple individuals and multiple revisions prior to finalization. The Track Changes feature works very well for this purpose, with one exception: the document includes, in the footer, a date field (saved date), and each time the document is saved, Track Changes automatically strikes out the existing date and inserts a new last-saved date. This quickly results in a multi-line footer of revised last-saved date fields. Carl wondered if there is a way to tell Word to "ignore" the footer (or a specified field, block of text, section, etc.) when using Track Changes.

The short answer is that no, there isn't any way to do this. The Track Changes feature is either on or off for the entire document. This means that you have only a couple of options. The first option is to make the date in the footer static, so that it doesn't change. You could replace it with text (instead of using a field) and then simply remember to update the date as one of the last steps before finishing or printing the document.

Another option is to always accept the change to the footer whenever you open the file in Word. Simply right-click the date in the footer and then choose to Accept Change.

You can also "lock" the date in the footer. Just select the date field and press Ctrl+F11. This means that the field won't be updated and, therefore, won't show as changed when working in the document. When you are done developing the document, you can always unlock the field by again selecting it and pressing Ctrl+Shift+F11.

Still another option is to use a macro to save your document (if this is the point where the footer is being updated). The following macro accomplishes several things, and can be assigned to a toolbar button for ease of use. First, it steps through all the footers in the document and updates all the fields in the footers. It then accepts any revisions in those footers. Finally, it saves the document.

Sub Save_NoFooterRevisions()
    Dim rFooter As Range
    Dim iSectCount As Integer
    Dim j As Integer

    iSectCount = ActiveDocument.Sections.Count

    For j = 1 To iSectCount
        Set rFooter = ActiveDocument.Sections(j) _
          .Footers(wdHeaderFooterPrimary).Range
        With rFooter
            .Fields.Update
            .Revisions.AcceptAll
        End With
        Set rFooter = ActiveDocument.Sections(j) _
          .Footers(wdHeaderFooterEvenPages).Range
        With rFooter
            .Fields.Update
            .Revisions.AcceptAll
        End With
        Set rFooter = ActiveDocument.Sections(j) _
          .Footers(wdHeaderFooterFirstPage).Range
        With rFooter
            .Fields.Update
            .Revisions.AcceptAll
        End With
    Next j
    ActiveDocument.Save
End Sub

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (10807) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, Word in Microsoft 365, and 2021. You can find a version of this tip for the older menu interface of Word here: Turning Track Changes Off for Selected Areas.

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

Disabling the Caps Lock Key

A few tips and tricks for working around the dratted Caps Lock button.

Discover More

Cropping Pictures

Excel allows you to easily add graphics to a worksheet. If you want to crop an image you previously added, here's how to ...

Discover More

Getting User Input in a Dialog Box

Want to get some input from the users of your workbooks? You can do it by using the InputBox function in a macro.

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!

More WordTips (ribbon)

Getting a Warning for Markup

Many people, when collaborating on a document with others, use the Track Changes feature to show the effects of their ...

Discover More

Word Tracks Changes to Changes

When you have Track Changes turned on for a document, Word remembers which editor made which changes. If this behavior ...

Discover More

Track Changes Thinks the Editor Has Changed

Track changes is a great feature to use when you want to show what has changed in a document. Word should note which ...

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 9 + 3?

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.