Please Note: This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Examining Tracked Changes in a Macro.

Examining Tracked Changes in a Macro

Written by Allen Wyatt (last updated October 31, 2015)
This tip applies to Word 97, 2000, 2002, and 2003


2

If you need to develop a macro to process a document in which changes have been tracked (using the Track Changes feature), you may wonder how you can determine the number of changes in the document and how you can look at each of the changes, programmatically. It isn't that tough to do if you remember that the changes are organized in using the Revisions collection. This means that you can determine the number of changes using this code:

iNumChanges = ActiveDocument.Revisions.Count

Just like any other collection, you can step through each member of the Revisions collection and figure out various information about the change represented in the member. While the details of what properties and methods belong to the Revisions collection is much too voluminous for this tip, you can determine the type of each change by looking at the Type property, in this manner:

vChange = ActiveDocument.Revisions(1).Type

At this point vChange will be equal to one of 14 possible revision types. These revision types can be referenced by the built-in constants wdNoRevision, wdRevisionDelete, wdRevisionInsert, wdRevisionParagraphProperty, wdRevisionReconcile, wdRevisionSectionProperty, wdRevisionStyleDefinition, wdRevisionConflict, wdRevisionDisplayField, wdRevisionParagraphNumber, wdRevisionProperty, wdRevisionReplace, wdRevisionStyle, and wdRevisionTableProperty.

Additional information can be found in Word's Help system or by searching the Internet for the phrase "revisions collection".

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 (8914) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Examining Tracked Changes in a Macro.

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

Quickly Changing Font Sizes

A quick little shortcut can help you easily step through different font sizes for whatever text you've selected. Word ...

Discover More

Removing All Bookmarks

Need to get rid of a lot of bookmarks all at once? Word doesn't provide a way to do it, but you can use the short macro ...

Discover More

Widening a Column to a Particular Cell's Width

Do you want to set a column's width based on whatever is in the currently selected cell? There are actually a number of ...

Discover More

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!

More WordTips (menu)

Showing Only Added Text with Track Changes

Do you want to change how Track Changes displays the markup in your document? Here's how you can completely hide deleted ...

Discover More

Select All Changes By a Particular Reviewer

The Track Changes feature in Word allows you and other editors to easily collaborate on the development of a document. If ...

Discover More

Printing without Track Changes Marks

If your document has a lot of markup visible in it, you may want to print a copy of the document that doesn't reflect ...

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 one less than 9?

2015-11-01 07:05:10

Ken Endacott

Some other useful statements.

Turn display of revisions on or off:
ActiveDocument.ShowRevisions = True

Show specific revisions, set to True or False as requited:
ActiveWindow.View.ShowFormatChanges = True
ActiveWindow.View. ShowInsertionsAndDeletions = True
ActiveWindow.View .ShowComments = True

Display the Track Changes option form:
Call Dialogs(wdDialogToolsOptionsTrackChanges).Show

Putting these statements into a macro that prompts to remove individual revisions from the current cursor position forward:
Sub RemoveIndividualRevisions()
Dim Rv As Revision
Dim aRange As Range
Dim k As Long
ActiveDocument.ShowRevisions = True
ActiveWindow.View.ShowFormatChanges = True
ActiveWindow.View.ShowInsertionsAndDeletions = True
ActiveWindow.View.ShowComments = False
Set aRange = Selection.Range
aRange.End = ActiveDocument.Range.End
For Each Rv In aRange.Revisions
Rv.Range.Select
k = MsgBox("Do you want to remove this revision", vbYesNoCancel, "Track Change Revisions")
If k = vbCancel Then Exit Sub
If k = vbYes Then Rv.Accept
Next Rv
End Sub


2015-10-31 20:32:43

Colin Pernet

Thanks from Colin In Australia


This Site

Got a version of Word that uses the menu interface (Word 97, Word 2000, Word 2002, or Word 2003)? This site is for you! If you use a later version of Word, visit our WordTips site focusing on the ribbon 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.