How to remove all comments from document in Word?
Comment feature is one of the most useful features in Word. Comments provide notes to users and it’s more convenient when two or more people editing the document.
Note: Comments can be shown or hidden by Show Mark option on the Review tab in Tracking group, see the screenshot:
This tutorial will show you the ways to get rid of comments in document at once when you don’t need them.
Remove comments with Delete function provided by Word
Remove all comments with VBA code
One click to remove all comments with Kutools for Word
Remove comments with Delete function provided by Word
As the following steps, you can remove the single comment or all comments of documents:
1. Select the comment you want to remove (skip if you want to remove all comments).
2. Please click Review > Delete > Delete or Delete All Comments in Document. See screenshot:
Note: When you put the cursor in a comment, the Delete option will be available in the above screenshot. Otherwise, there is only Delete All Comments In Word available.
Remove all comments with VBA code
There is another easy way to remove all comments from document using VBA. Do as follows:
1. Press “Alt-F11” to open the Microsoft Visual Basic for Application window.
2. click Module from Insert tab, copy and paste the following VBA code into module window;
The VBA code to remove all comments in Word:
Sub RemoveAllComments()
Dim n As Long
Dim oComments As Comments
Set oComments = ActiveDocument.Comments
For n = oComments.Count To 1 Step -1
oComments(n).Delete
Next 'n
Set oComments = Nothing
End Sub
3. Click Run button to apply the VBA, or press F5.
One click to remove all comments with Kutools for Word
Kutools for Word’s Remove Comments utility can quickly remove all comments in the whole document, but if you have selected a part of the document first, it will only remove all the comments from the selection of the document.
Kutools for Word, a handy add-in, includes groups of tools to ease your work and enhance your ability of processing word document. Free Trial for 45 days! Get It Now!
1. Please apply this utility by clicking Kutools > More > Remove Comments. See screenshot:
2. After clicking Remove Comments, you will see the result as shown in the below screenshots:
![]() |
![]() |
![]() |
This utility also can remove all comments from a part of the document, for more information about how to remove all comments from a part of the document, please visit here.
Recommended Word Productivity Tools
Kutools For Word - More Than 100 Advanced Features For Word, Save Your 50% Time
- Complicated and repeated operations can be done one-time processing in seconds.
- Insert multiple images across folders into Word document at once.
- Merge and combine multiple Word files across folders into one with your desired order.
- Split the current document into separate documents according to heading, section break or other criteria.
- Convert files between Doc and Docx, Docx and PDF, collection of tools for common conversions and selection, and so on...



















