I have a sheet and want to create a formula that looks at the info in a column named "Bill Status" and column named "Our Stance". Based on the combinations of the responses in these columns I want and output of Win, Loss, Null.
Column named Bill Status, possible options are:
Active
Dead
Enacted
Column named Our Stance, possible options are:
Support
Oppose
Neutral
I need to have it result in Win, Loss, Null based on the following:
Support + Enacted = Win
Oppose + Dead = Win
Support + Dead = Loss
Oppose + Enacted = Loss
Support + Active = Null
Oppose + Active = Null
Neutral +Enacted = Null
Neutral + Dead = Null
Neutral + Active = Null
I have no idea where to start as everything I tried either results in INCORRECT ARGUMENT or UNPARSEABLE.