I am having difficulty inputting the correct formula for the following project I need.
These are my conditions:
A2="Yes", B2="Yes", C2="Yes” this should return a YES
A2="Yes", B2="Yes", C2="No" this should return a YES
A2="Yes", B2="No", C2="Yes" this should return a YES
A2="Yes", B2="No", C2="No" this should return a No
A2="No", B2="No", C2="No" this should return a No
A2="No", B2="Yes", C2="Yes" this should return a No
A2="No", B2="No", C2="Yes" this should return a No
A2="No", B2="Yes", C2="No" this should return a No
This is what I have but it only gives me YES to all.
=IF(OR(AND(A2="Yes",B2="Yes",C2="Yes"),AND(A2="Yes",B2="Yes",C2="No"),AND(A2="Yes",B2="No",C2="Yes"),AND(A2="Yes",B2="No",C2="No"),AND(A2="No",B2="No",C2="No"),AND(A2="No",B2="Yes",C2="Yes"),AND(A2="No",B2="No",C2="Yes"),AND(A2="No",B2="Yes",C2="No")),"Yes","No")
These are my conditions:
A2="Yes", B2="Yes", C2="Yes” this should return a YES
A2="Yes", B2="Yes", C2="No" this should return a YES
A2="Yes", B2="No", C2="Yes" this should return a YES
A2="Yes", B2="No", C2="No" this should return a No
A2="No", B2="No", C2="No" this should return a No
A2="No", B2="Yes", C2="Yes" this should return a No
A2="No", B2="No", C2="Yes" this should return a No
A2="No", B2="Yes", C2="No" this should return a No
This is what I have but it only gives me YES to all.
=IF(OR(AND(A2="Yes",B2="Yes",C2="Yes"),AND(A2="Yes",B2="Yes",C2="No"),AND(A2="Yes",B2="No",C2="Yes"),AND(A2="Yes",B2="No",C2="No"),AND(A2="No",B2="No",C2="No"),AND(A2="No",B2="Yes",C2="Yes"),AND(A2="No",B2="No",C2="Yes"),AND(A2="No",B2="Yes",C2="No")),"Yes","No")