Conditional formatting with OR in Excel!
Solved
lucasp
Posted messages
13
Registration date
Status
Membre
Last intervention
-
Patrice33740 Posted messages 8400 Registration date Status Membre Last intervention -
Patrice33740 Posted messages 8400 Registration date Status Membre Last intervention -
Hello,
I have tried several ways but I haven't found the right one!
The cell value is ; equal to ; OR(="option1";="option2";="option3")
The cell value is ; equal to ; "option1";"option2";"option3"
The cell value is ; equal to ; =OR("option1";"option2";"option3")
The formula is ; =OR("option1";"option2";"option3")
...
To say that I have tried everything but nothing works?!??!?
Please, can you tell me how to do conditional formatting with multiple choices for the same format (because I need the other 2 conditions (with multiple choices)).
Thank you
Configuration: Windows XP / Internet Explorer 8.0
I have tried several ways but I haven't found the right one!
The cell value is ; equal to ; OR(="option1";="option2";="option3")
The cell value is ; equal to ; "option1";"option2";"option3"
The cell value is ; equal to ; =OR("option1";"option2";"option3")
The formula is ; =OR("option1";"option2";"option3")
...
To say that I have tried everything but nothing works?!??!?
Please, can you tell me how to do conditional formatting with multiple choices for the same format (because I need the other 2 conditions (with multiple choices)).
Thank you
Configuration: Windows XP / Internet Explorer 8.0
6 réponses
Re,<>
In H9 enter:
=OR(H9="";H9="None";H9="Done and pending")
=OR(H9="Reminder done";H9="Done and pending (Reminder done)")
and copy the formatting down to H108
If you use multiple conditional formatting rules for a cell:
- either you determine the order in which they should apply (which one is priority),
- or in your equation, you take into account the other cases, for example:
=AND(OR(H9="";H9="None";H9="Done and pending");H9<>"Received and approved")
Best regards
Nicolas always says: “It’s easy when you know the answer!”
In H9 enter:
=OR(H9="";H9="None";H9="Done and pending")
=OR(H9="Reminder done";H9="Done and pending (Reminder done)")
and copy the formatting down to H108
If you use multiple conditional formatting rules for a cell:
- either you determine the order in which they should apply (which one is priority),
- or in your equation, you take into account the other cases, for example:
=AND(OR(H9="";H9="None";H9="Done and pending");H9<>"Received and approved")
Best regards
Nicolas always says: “It’s easy when you know the answer!”