Share via

Change default bright red color of the note indicator in Microsoft Excel

Vaibhav Mittal 25 Reputation points
2026-03-11T07:08:50.63+00:00

Is there a way to change the note indicator color which is defaulted to bright red color in Microsoft Excel? I want to change the color to green. Please guide on the steps to change it.

If the above is possible, is it possible to do this through POI API that I am using to generate the Excel?

Microsoft 365 and Office | Excel | For business | Windows
0 comments No comments
{count} votes

Answer accepted by question author
  1. Rin-L 15,665 Reputation points Microsoft External Staff Moderator
    2026-03-11T08:01:12.11+00:00

    Hi @Vaibhav Mittal

    Unfortunately, Excel does not provide any built-in option to change the default bright red color of the note indicator. The small red triangle shown in the corner of a cell is a hardcoded UI element controlled entirely by Excel’s internal rendering engine. Because of this, its color isn’t stored as part of the workbook’s file structure.  

    Since the indicator color is managed at the Excel application level (not the file format level), there’s no property exposed that libraries like Apache POI can read or modify. The same limitation applies across all Excel manipulation libraries, including POI, NPOI, EPPlus, and the OpenXML SDK. As a result, it isn’t possible to programmatically change the note indicator triangle color through POI either. 

    I understand this may not be the answer you were hoping for. As a forum moderator, I don’t have the ability to modify built‑in Excel behaviors, I can only help confirm how the product currently works and make sure you have clear information. 

    If you would like Excel to support customizing the note indicator color in the future, you’re very welcome to submit this as a feature request to the Excel · Community. If you share the link here afterward, I and others who agree with your idea can help vote for it. 

    User's image

    Thank you for your understanding!


    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.  


1 additional answer

Sort by: Most helpful
  1. Q&A Assist
    2026-03-11T07:09:01.8866667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    Excel does not provide any built‑in option in the user interface to change the default bright red color of the note/comment indicator triangle. The indicator color is controlled internally and cannot be customized to green (or any other color) via standard Excel settings.

    The closest related, configurable color in the object model is the error‑checking indicator color, exposed via the ErrorCheckingOptions.IndicatorColorIndex property. This allows changing the color of the green error‑checking triangle, not the note/comment indicator. For example, in VBA:

    Application.ErrorCheckingOptions.IndicatorColorIndex = xlColorIndexAutomatic
    

    or via the .NET interop API using the IndicatorColorIndex property. However, this does not affect note/comment indicators.

    Because the note indicator color is not exposed as a configurable property in Excel, it also cannot be changed through external libraries such as Apache POI. POI can control cell formatting (font color, fill color, etc.), but not the built‑in note indicator triangle color.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.