I need to create a conditional formatting formula with the following:
If the cell value in P2:P40 does not equal either 'unworked', 'complete', or 'incomplete', then the cell format should be red
I need to create a conditional formatting formula with the following:
If the cell value in P2:P40 does not equal either 'unworked', 'complete', or 'incomplete', then the cell format should be red
Hi,
You could use
=NOT(OR(P2="unworked",P2= "complete",P2="'incomplete"))
Don
Please remember to mark your thread 'Solved' when appropriate.
that works. thanks.
A variation from #2
=OR(P2<>"unworked",P2<>"complete",P2<>"'incomplete"))
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks