How to delete all comments in a worksheet/workbook?
In general, most of users know how to remove one comment in Excel, but when you have a worksheet or workbook with multipel comments, do you know the way to mass remove all of the comments? Now I tell you some quick ways to remove all comments from a worksheet or a whole workbook.
Delete all comments in a worksheet with Delete in Excel
Delete all comments in a worksheet with Go to function in Excel
Delete all comments in a worksheet or workbook with VBA
Reset all comments’ locations with Kutools for Excel
Delete all comments in a worksheet with Delete in Excel
You can use shortcut to select all comments in a worksheet and then delete them.
1. Open the worksheet you want to remove all comments and press Ctrl + A to select the whole sheet.
2. Then click Review > Delete, then all the comments in the current worksheet are removed. See screenshot:
Delete all comments in a worksheet with Go to function in Excel
In Excel, if you want to delete all comments in a worksheet, you can do these:
1. Press F5 to show the Go To dialog, and click Special… to open Go To Special dialog, then check Comments and click OK to close the dialog. See screenshots:
2. Then right click to open context menu and click Delete Comment, and now, all the comments in current worksheet are removed.
Delete all comments in a worksheet or workbook with VBA
There is also VBA can help you to delete comments from a worksheet or a whole workbook.
1. Press Alt + F11 to display the Microsoft Visual Basic for Applications window.
2. In the window, click Insert > Module to show a new module window, then copy the following VBA code into the module window.
VBA: Delete comments from a worksheet.
Sub Remove_All_Comments_From_Worksheet()
Cells.ClearComments
End Sub
VBA: Delete all comments from the whole workbook
Sub DeleteAllComments()
'Updateby20140613
For Each xWs In Application.ActiveWorkbook.Sheets
For Each xComment In xWs.Comments
xComment.Delete
Next
Next
End Sub
3. Click Run button to run the code, and you can see all the comments are removed from the current worksheet or the whole workbook.
Reset all comments’ locations with Kutools for Excel
When you have inserted multiple comments in workbook, and you may proberbly to drag the comments as below screenshot shown. And now you want to reset the comments’ locations back, you can use Kutools for Excel’s Reset Comment Position to quickly reset them.
Kutools for Excel, with more than 300 handy functions, makes your jobs more easier. | ||
After free installing Kutools for Excel, please do as below:
Click Kutools > More > Reset Comment Position. See screenshot:
Then choose Active sheet to reset comments position in active sheet, or All sheets to reset all comments position of the whole workbook.
Reset all Comments' locations
Kutools for Excel: 300+ functions you must have in Excel, 30-day free trial from here |
Relative Articles:
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office/Excel 2007-2019 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.

Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!






