Link to home
Start Free TrialLog in
Avatar of wrt1mea
wrt1mea

asked on

I need a conditional formatting formula

I am using the following formula in Conditional Formatting:

AND($Q215="APPROVED",$S215="") and it works for what I am trying to do.

Now I need another formula to see if X215 is greater than zero or not blank. I tried to use:

AND($x215="<>",$S215="")  but it shaded my entire range green....

How would I combine the two formulas together. I need it to turn green if q215 says approved OR X215 has a value in it...
ASKER CERTIFIED SOLUTION
Avatar of Norie
Norie

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Maybe it should be:

=$X215>0

(if it's not blank, and assuming a number, then it will be greater than 0, so only need the one statement.

To combine with first formula:

AND($Q215="APPROVED",$S215="",$X215>0)
Avatar of wrt1mea
wrt1mea

ASKER

PERFECT!!!!!!!!!!!!!!!!1