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
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.5K Get Help
- 434 Global Discussions
- 152 Industry Talk
- 494 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 506 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!