
Tips.Net > WordTips Home > Editing > Comments and Annotations > 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:
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:
If you are using Word 2007, then you can delete comments by following these steps:
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!
If you provide support and help to others, you need the power offered in the WordTips Ten-Year Library. There is no better information repository anywhere! (more information...)
Ask a Word Question
Make a Comment
Bugs and Pests Tips
ExcelTips
Family Tips
Health Tips
Home Tips
Organizing Tips
WordTips