What colour do you want it if the cell is not blank AND the value is less than, or equal to, today?
Barrie
Barrie Davidson
=(H32="Not available" or "Not applicable) ???
=(H32="Not available" or "Not applicable)
How do I make this formula work?
I am only able to add 3 conditions so can I put these two together?
=(H32="Not available")
=(H32="Not applicable)
Re: =(H32="Not available" or "Not applicable) ???
=OR(H2={"not available","not applicable"})
Use Tools|Autocorrect and add the symbols you want to use into your autocorrect list. For example when you type (c) excel automatically changes it to the copyright symbol. You can do the same for the symbols you're looking for.
Sorry, one question I missed - if the cell is not blank AND the value is greater than today, what colour?
I'm thinking you can use something like this:
1. Cell is not blank AND value is less than, or equal to today, use this formula to set your conditional format:
=AND(NOT(ISBLANK(A1)),A1<=TODAY())
2. Cell is not blank AND value is greater than today:
=AND(NOT(ISBLANK(A1)),A1>TODAY())
Can you use those formulas?
BarrieBarrie Davidson