
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
More Power! For some people, the prospect of creating Word macros can be scary. WordTips: The Macros can help you conquer your fears and you'll discover you're much more confident and productive as you make Word do exactly what you want. This is an invaluable source for learning macros. You are introduced to the topic in bite-sized chunks, pulled from past issues of WordTips. Learn at your own pace, exactly the way you want.
Check out WordTips: The Macros today!
Learn to search for and replace text, formatting, graphics, and special characters the easy way with WordTips: Find and Replace. (more information...)
Ask a Word Question
Make a Comment
Beauty Tips
Bugs and Pests Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Money Tips
Organizing Tips
Pet Tips
Word2007 Tips
WordTips