I have 3 columns (A, B, C) with yes/no responses.
I want column D to return a response of "contractor" if the response to Column A = yes , Column B = yes, and Column C = no.
I have been trying:
=IF(AND([A]1 = "yes", [B]1 = "yes", [C]1 = "no"), "contractor")
What am I doing wrong? THANK YOU!