Word.Tips.Net Welcome toWord.Tips.Net

Helpful Links

Tips.Net Home
WordTips Home

Ask a Word Question
Make a Comment

Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

Newest Tips

Changing Tabs Using the Ruler

Moving Drawing Objects

Standardizing Note Reference Placement

Selecting Printing of Color Pictures

Stubborn Foreign Languages

Sizing the Preview Pane

Moving Rows and Columns With the Mouse

 

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:

  1. Make sure the Reviewing toolbar is displayed. (Select View | Toolbars | Reviewing.)
  2. On the Reviewing toolbar, choose Reviewers from the Show menu. Word displays a list of reviewers that contributed to the document.
  3. Select the name of a reviewer whose changes you don't want to see. The check mark next to the reviewer name disappears.
  4. Repeat steps 2 and 3 for each reviewer whose changes you don't want to see. When you are done, the only reviewer that should be "visible" (has a check mark next to the name) is the one whose changes you want to accept.
  5. Click the down-arrow next to the Accept tool. Word displays a drop-down menu.
  6. Choose Accept All Changes Shown. Word accepts all the changes shown, meaning only those from the single reviewer.

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

Tremendous Table Tips! We often take tables for granted, but Word includes some very powerful ways you can present your tabular data. Discover how to make your tables better, easier to understand, and more effective.
 
Check out WordTips: Terrific Tables today!