
Tips.Net > WordTips Home > Editing > Track Changes > Select All Changes By a Particular Reviewer
Summary: If you are using Word 2002 or Word 2003, and you’ve been tracking changes in a document, you can display all the changes made by individual editors. This tip shows how easy such a task can be. (This tip works with Microsoft Word 2002, and Word 2003.)
Barry uses Word's Track Changes feature to keep tabs on what many different reviewers do to a document. He wondered if there was a way to accept all the changes from a particular reviewer, but not those from the other reviewers.
The answer depends on the version of Word you are using. If you are using Word 97 or Word 2000, the answer is no, you cannot. All you can do is either work through the changes individually or accept or reject them all. If you are using Word 2002 or Word 2003, the story is different; all you need to do is follow these steps:
If you are using a version of Word prior to Word 2002, you can try to use a macro to accept changes by a particular author. Because of the way that VBA functions behind-the-scenes, however, you will want to test out the macro thoroughly with your version of Word to make sure it works as expected.
The following macro will step through all the changes made to a document, comparing the name associated with each change to the name of the reviewer whose changes you want to keep. All you need to do is replace "authorname" with the reviewer's name. You can find out the reviewer's name by hovering the mouse over a change made by that reviewer. When you do, Word displays a small yellow box, similar to a ToolTip, that contains (among other things) the reviewer's name; just put the same name in the macro.
Sub ReviewAuthor()
For Each oChange In ActiveDocument.Revisions
If oChange.Author = "authorname" Then
oChange.Accept
End If
Next
End Sub
Tip #1639 applies to Microsoft Word versions: 2002 2003
Take Control! Master the real power behind Word! Successfully master the secrets of powerful formatting and create documents that stand out from the rest. Best of all, you can create documents that are easy to maintain and quick to change.
Check out Word 2007 Styles and Templates today!
Discover how to use Word's mail merge tool to create your own custom documents in just minutes. Great e-book answers all your questions. (more information...)
Ask a Word Question
Make a Comment
Bugs and Pests Tips
ExcelTips
Family Tips
Health Tips
Home Tips
Organizing Tips
WordTips