Reputation: 155
What I am trying to do here,
Upvotes: 1
Views: 1567
Reputation: 11214
You should add a condition on your 1 and 2 conditions to prevent them from overwriting the failing condition and not interfere with each other
=AND($AA2>=7, $AA2<=9, $V2<>"Shipped")
=AND($AA2>=10, $V2<>"Shipped")
This means that they only format the cells IF $V2 is not "Shipped" and condition 1 will only work on AA values 7-9
The problem with your conditions is that it can support 2 cases at once. For these issues, we need to completely separate them so that they will not have issues.
Every case should only be under 1 conditional formatting for it to work properly.
Also, note the hierarchy of the conditions as it will affect the outcome.
Reference:
Upvotes: 1