Help on formula - Looking at two columns and depending on the responses in both
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.
Answers
-
=IF(OR( AND([Our Stance]@row = "Support", [Bill Status]@row = "Enacted"), AND([Our Stance]@row = "Oppose", [Bill Status]@row = "Dead")), "Win", IF(OR( AND([Our Stance]@row = "Support", [Bill Status]@row = "Dead"), AND([Our Stance]@row = "Oppose", [Bill Status]@row = "Enacted")), "Loss", IF(OR( AND([Our Stance]@row = "Support", [Bill Status]@row = "Active"), AND([Our Stance]@row = "Oppose", [Bill Status]@row = "Active"), AND([Our Stance]@row = "Neutral", [Bill Status]@row = "Enacted"), AND([Our Stance]@row = "Neutral", [Bill Status]@row = "Dead"), AND([Our Stance]@row = "Neutral", [Bill Status]@row = "Active")), "Null", "")))
...
-
Try: =IF(OR(AND([Bill Status]@row = "Enacted", [Our Stance]@row = "Support"), AND([Bill Status]@row = "Dead", [Our Stance]@row = "Oppose")), "Win", IF(OR(AND([Bill Status]@row = "Dead", [Our Stance]@row = "Support"), AND([Bill Status]@row = "Enacted", [Our Stance]@row = "Oppose")), "Loss", "Null"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!