Please Note: This article is written for users of the following Microsoft Word versions: 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. 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: Tracked Changes Notification when Opening.
Written by Allen Wyatt (last updated April 1, 2024)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365
Robin is looking for a way to notify users, when a document is opened, as to whether there are any tracked changes in the document. This is not a standard feature of Word, but it can be added easily enough with an AutoOpen macro. If you want the macro to simply indicate whether Track Changes is turned on, you can use the following:
Sub AutoOpen() If ActiveDocument.TrackRevisions = True Then MsgBox "Track Changes is On." End If End Sub
Note that this macro doesn't let you know if there are actually any changes in the document, so it doesn't help in the situation where Track Changes is turned off, but unresolved changes from a previous editing session still exist. In that case, you need to expand the macro slightly.
Sub AutoOpen() On Error Resume Next If ActiveDocument.TrackRevisions = True Then MsgBox "Track Changes is On" With ActiveWindow.View .ShowRevisionsAndComments = True .RevisionsView = wdRevisionsViewFinal End With Exit Sub End If If ActiveDocument.Revisions.Count > 0 Then MsgBox "Document contains revisions" With ActiveWindow.View .ShowRevisionsAndComments = True .RevisionsView = wdRevisionsViewFinal End With Exit Sub End If End Sub
This version of the macro checks two conditions, displaying a message box if Track Changes is turned on and also displaying a message box if there are any changes existing in the document. In both cases, the macro also changes the view of the document so that changes are visible on-screen.
Note:
WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (10971) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365. You can find a version of this tip for the older menu interface of Word here: Tracked Changes Notification when Opening.
The First and Last Word on Word! Bestselling For Dummies author Dan Gookin puts his usual fun and friendly candor back to work to show you how to navigate Word 2013. Spend more time working and less time trying to figure it all out! Check out Word 2013 For Dummies today!
Track Changes is a great tool for editors and collaborators to use when creating documents. An author, seeking changes ...
Discover MoreWord includes a feature that allows you to track changes made to a document. One of the ways in which Word marks your ...
Discover MoreWord allows you to view any tracked changes in your documents in a variety of ways. Here's how you can make one of those ...
Discover MoreFREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-02-26 11:27:39
Jay
Another option, albeit not automatic, would be to add the Next Change command to the Quick Access Toolbar and manually check for a change.
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.
Visit the WordTips channel on YouTube
FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments