Combine Conditional Formatting Rules formulae

F

Fred

I have 2 Conditional Formatting rules that result in ths same format
being applied to a cell, so would like to combine them to free up a
rule, however all my attempts have been unsuccessful.

Rule 1:
=AND(W6>0,W6<TODAY()-5,W6<TODAY(),D6<>"Complete",D6<>"Cancelled")
Rule 2: =OR(W6="Unknown",W6="Replanning")

Any suggestions gratefully received

Thanks and regards
Fred
 
J

JE McGimpsey

One way:

=OR(W6="Unknown", W6="Replanning", AND(W6>0, W6<TODAY()-5,
W6<TODAY() ,D6<>"Complete", D6<>"Cancelled"))
 
F

Fred

Doh !

So obvious, because I had Rule 1, I simply attached the Or to it and
got nowhere.

Many thanks.
 
G

Guest

What about if I just want to combine something like
- If C6 = "1" or "16" or "8" or "9" Then the cell background would be a
specified color?
 

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