Changing the Comment Indicator Color

Written by Allen Wyatt (last updated February 14, 2026)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365


Francois wonders if it is possible to change the color of the triangle that appears in the upper-right corner of a cell when there is a comment associated with the cell. The triangle is red, by default, but Francois would like it to be a different color that is easier for him to see.

There are some things that, it seems, are simply hard-coded into Excel and cannot be changed. The color of the comment indicator is one of those items. Even playing with the various color settings in Windows had no effect on the indicators.

Note that in newer versions of Excel the terminology has changed. What used to be called a comment is now referred to as a note, and Excel uses the term comment for the newer, threaded comments. The indicator for a note is still the familiar red triangle, and the indicator for a threaded comment is different; neither indicator color can be changed through normal settings.

This has been an issue that has been asked about and discussed for years in the Excel community. One potential workaround is presented by MVP Debra Dagliesh at this page:

https://www.contextures.com/xlcomments03.html#Indicator

The solution presented there was actually designed for printing. (Excel doesn't print indicators when you print a worksheet, but you may want them printed.) The macro that Debra presents can be easily modified so that the graphic used is any color desired.

Of course, the drawback to such an approach is that it adds a graphic to your worksheet for each comment you have. If you have lots of comments in the worksheet, you'll end up having lots of graphics. In addition, the graphics may not "stay put" as you edit the worksheet, adding and deleting cells. If you add or delete comments, then you'll also need to delete graphics (Debra provides a macro to do this) and rerun the macro to add graphics back.

Another potential option is to use a macro to color the background of any cell that contains a comment. The following macro looks at whatever cells you have selected and then changes the color of any cell containing a comment.

Sub ColorComments()
    Dim c As Range

    On Error GoTo ErrorHandler 'Deal with empty selection
    Selection.SpecialCells(xlCellTypeComments).Select
    On Error GoTo 0

    For Each c In Selection.Cells
        If (Not c.Comment Is Nothing)
          Or (Not c.CommentThreaded Is Nothing) Then
            c.Interior.ColorIndex = 36
        End If
    Next c

    Range("A1").Select
    Exit Sub
ErrorHandler:
   ' Error Handler is deliberately empty
End Sub

The drawback to this macro is that it is not easy to "unmark" any cells if notes or comments are removed. You'll also need to rerun the macro as you add new notes or comments to your worksheet.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3498) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Getting Rid of the Startup Document

When you start Word, it opens a blank document, ready for you to start typing within. If you don't want this blank ...

Discover More

Default Font for Page Numbers

Page numbers are a common addition to documents, and a great aid to readers. If you want to easily format page numbers, ...

Discover More

Limiting Input to a Format

When setting up a worksheet for others to use, you might want to make some limitations on what can be entered in certain ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 365 applications with VBA programming. Written in clear terms and understandable language, the book includes systematic tutorials and contains both intermediate and advanced content for experienced VB developers. Designed to be comprehensive, the book addresses not just one Office application, but the entire Office suite. Check out Mastering VBA for Microsoft Office 365 today!

More ExcelTips (ribbon)

Searching Comments

Need to find that misplaced comment in your worksheet? It's easy to do using the Find and Replace capabilities of Excel.

Discover More

Copying Comments to Cells

Need to copy whatever is in a comment (a "note") into a cell on your worksheet? If you have lots of comments, manually ...

Discover More

Adding a Comment to Multiple Cells

Adding a comment to a single cell is easy. What if you want to add the same comment to multiple cells, however? Here are ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is eight minus 6?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.