Change cell color for valid if statement

  • Thread starter Thread starter Chris H
  • Start date Start date
C

Chris H

When using an "IF" formula and the value is true, how do i change the color
in the results cell. I.E. if A6>1,"black", how do i get the cell to turn
black and say black
 
Welcome to the world of conditional formats!

The formula in the cell will be:
=IF(A6>1,"black","")

With the cell selected, goto Format - Conditional format.
"Cell value is", "equal to", black
Hit the format button, and choose appropriate font/pattern color.

Alternatively, if you don't need the word black to appear in the cell, your
conditional format would be:
"Formula is", =A6>1

For more help/guidance, check out the XL help file on conditional formatting.
 
Back
Top