Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Filtering for Comments (Notes).
Written by Allen Wyatt (last updated March 11, 2022)
This tip applies to Excel 97, 2000, 2002, and 2003
Robert has a worksheet that has comments included in various places. He wonders if it is possible to filter the rows in a data table so that only those rows that include comments in a particular column will be displayed.
The filtering capabilities of Excel don't provide a way that you can automatically check for the presence of comments, but there are a couple of ways you can approach a solution. One possible solution is to follow these general steps:
If you prefer, you can create a user-defined function that will let you know if a particular cell has a comment associated with it. The following is a simple way to make such a determination:
Function CellHasComment(c As Range) Application.Volatile True CellHasComment = Not c.Comment Is Nothing End Function
Now you can use a formula such as the following within a worksheet:
=CellHasComment(B2)
When the formula is executed, it returns either True or False, depending on whether cell B2 has a comment or not. You can then use Excel's filtering capabilities to display only those rows that have a True returned by the formula.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3508) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Filtering for Comments (Notes).
Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!
The filtering tools provided in Excel make it easy to filter a data list so that only certain rows are displayed. What if ...
Discover MoreThe filtering capabilities of Excel are indispensable when working with large sets of data. When you create a filtered ...
Discover MoreFilter a large worksheet, and Excel will helpfully recalculate every time you apply a different filter. This can get ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2019-11-04 03:07:23
Peter McNab
It would be more useful to return the actual comment, then you could do much more with your filter.
I think you will need to recalculate the cell/sheet for the formula to evaluate if you edit the cell.
It gets a bit messy in the current version of Excel since notes in a cell are comments in VBA. To read a note, I use range.Comment.Text. To read a comment it sees you need to use range.CommentThreaded.Text
2019-11-02 05:27:27
Sona Mishra
thanks
2019-10-15 09:43:09
Sander
Yes indeed! Or when all 'comments' cells are selected with the Go To function you can give them a color and use the color filter.
2019-03-14 12:14:15
Martin
I see only Note radio button why am I missing the Comments radio button how can I bring it up?
2018-10-15 13:50:25
Chuck
This is a fabulous tip. Thank you very much for sharing!
2018-10-04 17:28:24
Jodie
Thanks for your help Allen, this tip was a lifesaver!
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments