IF OR AND in same conditional formula

R

Ron

I'm setting up a conditional formula to use in a conditional format, where
depending on a couple of different conditions, the cell with the date entered
will be color-coded either red, yellow or green.

In this particular formula, I'm using the following variables:
- cell C7 = a percentage (70%)
- cell CI7 = the number of days calculated from today (19)

I've constructed the formula as such (makes sense to me, but Excel doesn't
like it)
=IF(AND(CI7<=30,D7>=70%),(OR(AND(CI7>=90,D7<=50%)))).

Essentially, I'm asking Excel to evaluate two conditions, either of which
would have the conditional format set the cell color to green.

Tried it also as two nested IF statements, but that doesn't work either. A
single IF statement, with no values entered for TRUE or FALSE works fine... I
just want to simplify my conditional formatting formulae by including any
condition that meets my criteria for color coding...

Any ideas??
 
T

Tom-S

Try this:

=IF(OR(AND(C17<=30,D7>=70%),AND(C17>=90,D7<=50%)), if true statement here,
if false statement here)

If you don't want to use an IF statement overall, try just the OR statement
within the conditional formatting feature (under the Format menu).
 
R

Ron

Thanks Tom! Worked like a charm!!

Tom-S said:
Try this:

=IF(OR(AND(C17<=30,D7>=70%),AND(C17>=90,D7<=50%)), if true statement here,
if false statement here)

If you don't want to use an IF statement overall, try just the OR statement
within the conditional formatting feature (under the Format menu).
 

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

Top