Multiple level conditions - If and/or statements
I have 3 columns that I am trying to build a formula for; Meeting w Broker, Meeting w Client and Probability.
The formula would be based on these conditions:
If broker is Yes, Client is Yes probability is .80
If broker is no, client is yes, probability is .60
If broker is yes, client is no, probability is .40
If both are no, probability is .15
I built this in excel as an IFS, but cannot get it in SS without getting an Unparseable error.
Best Answer
-
Try something like this...
=IF([Meeting w Broker]@row = "Yes", IF([Meeting w Client]@row = "Yes", .8, .4), IF([Meeting w Client]@row = "Yes", .6, .15))
Answers
-
Try something like this...
=IF([Meeting w Broker]@row = "Yes", IF([Meeting w Client]@row = "Yes", .8, .4), IF([Meeting w Client]@row = "Yes", .6, .15))
-
Thank you, worked perfectly
-
Excellent. Happy to help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!