bottom
Great WordTips!
         
Your e-mail address is safe!
Close Note

Tips.Net > WordTips Home > Editing > Comments and Annotations > Deleting All Comments

Deleting All Comments

Summary: Got comments in your document? Want to get rid of them all? The easiest way to do so is going to depend on the version of Word you are using and the complexity of the document you are editing. (This tip works with Microsoft Word 97, Word 2000, Word 2002, Word 2003, and Word 2007.)

When writing and editing a document, it is not uncommon to add comments throughout the document. This is particularly true if you are writing a "team" document, where several people have responsibility for different parts of the document.

When you are through working on the document, you may want a way to get rid of all the comments at once. One easy way to do this is to use the Find and Replace feature in Word. Follow these general steps:

  1. Configure Word so that hidden text is visible on-screen.
  2. Press Ctrl+H to bring up the Replace tab of the Find and Replace dialog box.
  3. Type "^a" (without the quotes) in the Find What box. This searches for the Comment reference symbol.
  4. Leave the Replace box empty.
  5. Click on Replace All.

This will delete all the comments in the document if you are using Word 97 or Word 2000. It won't work if you are using a later version of Word because it appears that the ^a code is no longer available. Instead, you can follow these steps to delete the comments if you are using Word 2002 or Word 2003:

  1. Make sure the Reviewing toolbar is displayed. (If necessary, choose Toolbars from the View menu, then click on Reviewing.)
  2. On the Reviewing toolbar, click the upside-down triangle next to the Reject Change/Delete Comment button. Word displays a drop-down list of options.
  3. Choose the Delete All Comments in Document option.

If you are using Word 2007, then you can delete comments by following these steps:

  1. Make sure the Review tab of the ruler is displayed.
  2. Click the down-arrow next to the Delete Comment button in the Comments group. Word displays a drop-down list of options. (Even though the Delete Comment button may look like it is not available, the down-arrow is active as long as there is one comment in the document.)
  3. Choose the Delete All Comments in Document option.

Depending on how complex the comments are in your document, neither of the above approaches may get rid of all the comments. This is particularly true if you have Track Changes turned on, and the document has gone through much iteration with lots of comments, some with Track Changes in place and some not. If you discover problems, or if you routinely have many, many comments to delete, you may want to consider creating a very short macro to get rid of comments. The following macro will delete all the comments in a document:

Sub RemoveComments1()
    For Each cmt In ActiveDocument.Comments
        cmt.Delete
    Next
End Sub

This macro will work in all VBA-enabled versions of Word (97, 2000, 2002, 2003, and 2007). If you are using Word 2002 or later, you can also use the following single-line macro, if desired:

Sub RemoveComments2()
    ActiveDocument.DeleteAllComments
End Sub

Tip #1896 applies to Microsoft Word versions: 97 | 2000 | 2002 | 2003 | 2007


Create and Merge! Using Word's mail merge tool you can quickly and easily combine data from a variety of data sources to create great individualized documents that incorporate your data in ways that you control. WordTips: Mail Merge Magic is an invaluable source for learning how to harness the full power of Word's mail merging capabilities.
 
Check out WordTips: Mail Merge Magic today!

Helpful Links

Ask a Word Question
Make a Comment

Tips.Net Home

WordTips FAQ
WordTips Premium

Learn Access Now

Bugs and Pests Tips
ExcelTips
Family Tips
Health Tips
Home Tips
Organizing Tips
WordTips

Advertise on the
WordTips Site

 

Great Info!

Get tips like this every week in WordTips, a free productivity newsletter. Enter your e-mail address and click "Subscribe."
     
(Your e-mail address will never be shared with anyone, ever.)