Conditional Formatting

A

Arturo

Cell J5 is conditionally formatted as
=IF(AND(TODAY()-J5<=7,K5<>1),TRUE,FALSE)

How would I add an additional condition of Today()-J5>0, then if all three
conditions are met, turn font red?

Appreciatively,
Arturo
 
E

Elkar

Just add another condition to the AND function:

=IF(AND(TODAY()-J5<=7,TODAY()-J5>0,K5<>1),TRUE,FALSE)

HTH,
Elkar
 
D

David Biddulph

You shouldn't need the IF(...,TRUE,FALSE).

You should get the same result from
=AND(TODAY()-J5<=7,TODAY()-J5>0,K5<>1)
 

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