How do I use an Excel formula to perform an action if a cell’s color is red?

To use an Excel formula to perform an action if a cell’s color is red, you can use the “IF” function combined with the “CELL” function. The “CELL” function allows you to check the formatting of a specific cell, and the “IF” function allows you to specify what action to take if the condition is met. So, you would use the “IF” function to check if the formatting of the cell is red and then specify the action to take if it is, such as changing the value of the cell or displaying a message. This allows you to create automated actions based on the color of a cell in your Excel spreadsheet.


Often you may want to use an IF statement in Excel to perform some action if a cell color is red.

Fortunately this is easy to do by creating a Defined Name in Excel that can check whether or not a cell is red.

The following example shows how to do so in practice.

Example: If Cell Color is Red Then Do Something in Excel

Suppose we have the following list of basketball players in Excel in which the red cells indicate that the player is an All-Star:

Suppose we would like to use an IF statement to check if each cell color in column A is red and return either “All-Star” or “Not All-Star” in column B.

To do so, we can click the Formulas tab along the top ribbon, then click the Name Manager icon:

In the new window that appears, click the New button in the top left corner:

In the new window that appears, type RedCell in the Name box, then type =GET.CELL(38,Sheet1!A2) in the Refers to box, then click OK:

Next, type =RedCell in cell B2, then click and drag this formula down to each cell in column B:

We can see that the formula returns a color code of 22 for each corresponding cell in column A that is red.

Now that we know which color code represents this shade of red, we can type the following formula into cell B2 to return “All-Star” if the corresponding cell in column A is red or “Not All-Star” otherwise:

=IF(RedCell=22, "All-Star", "Not All-Star")

We can then click and drag this formula down to each remaining cell in column B:

Excel if cell color is red then

Column B now returns “All-Star” or “Not All-Star” depending on whether or not the corresponding cell in column A is red.

Note that in this particular example, the shade of red that we used had a color code of 22.

However, different shades of red will have a different color code, which is why we created the RedCell custom formula to actually extract the color code before we created the IF statement.

Additional Resources

The following tutorials explain how to perform other common operations in Excel:

x