Problem with conditional formatting

  • Thread starter Thread starter DarrenMPY
  • Start date Start date
D

DarrenMPY

I am trying to apply background color to a range of cells if two
conditions are true. I have resorted to formatting each cell in the
range with the same "formula is" conditional format. My formula is
=IF(AND($A$3>100),($I$3>2%)) I get no errors but the cell is formatted
even if both conditions are false. Any help?
 
Watch your parentheses:
Either:
=IF(AND(($A$3>100),($I$3>2%)),TRUE)
or
=AND(($A$3>100),($I$3>2%))
or
=AND($A$3>100,$I$3>2%)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top