I am using conditional formatting for this scenario. It seems to work as an all or nothing option and I am trying to separate that. For example currently the formula changes to green if the variables are met. If one of those fall outside the guidelines it changes everything back to green even though 1 of the variables could still be met.
=OR(AND(D$1>=5,D$2>=5,D$3>=2,D$4>=2),AND(D$1>=4,D$2>=4,D$3>=3,D$4>=3))
Help please.
I even tried to do some separation such as:
=XOR(D$1>=5,D$2>=5,D$3>=2,D$4>=2)
=XOR(D$1>=4,D$2>=4,D$3>=3,D$4>=3)
Solved by V. B. in 11 mins