I'm trying to highlight a cell A6, if B6 + C6 >74.9%. However, B6 and C6 are calculated values and conditional formatting reads the formula in the cell, not the value it calculates
I can create an if statement with a 1
or a 0
:
=if((B6+C6) > 0.749, 1,0)
but if I use the same if statement in the conditional formatting (with out the ,1,0
) nothing happens:
=if(b6+C6) > 0.749
I want the cell to turn green, rather than a 1
or a 0
.