Using IF(AND Formula
Hello - I am trying to capture a few different scenarios to determine if part of project should be worked on (Go/No Go column) based on Benefit Level and Effort Level columns:
I tried one of the scenarios as a starting point a few different ways but got an Unparseable error
=IFS(AND([Benefit Level: High or Low]@row=High, [Effort Level: High or Low]@row=Low, "DO IT")
=IFS(AND([Benefit Level: High or Low]@row, "High", [Effort Level: High or Low]@row, "Low", "DO IT")
=IFS([Benefit Level: High or Low]@row, "High", [Effort Level: High or Low]@row, "Low", "DO IT")
Can you assist me with creating a full formula to capture the four scenarios above? Please let me know if you need any more information or if I am using the incorrect formula. Thank you
Best Answer
-
Hi @JNash,
IFS is not a recognized formula type in Smartsheet. What you need is a series of nested IF statements. Give this a try.
=IF(AND([Benefit Level: High or Low]@row = "High", [Effort Level: High or Low]@row = "Low"), "DO IT", IF(AND([Benefit Level: High or Low]@row = "High", [Effort Level: High or Low]@row = "High"), "RESCOPE", IF(AND([Benefit Level: High or Low]@row = "Low", [Effort Level: High or Low]@row = "Low"), "CONSIDER IT", IF(AND([Benefit Level: High or Low]@row = "Low", [Effort Level: High or Low]@row = "High"), "IGNORE"))))
Hope this helps,
Dave
Answers
-
Hi @JNash,
IFS is not a recognized formula type in Smartsheet. What you need is a series of nested IF statements. Give this a try.
=IF(AND([Benefit Level: High or Low]@row = "High", [Effort Level: High or Low]@row = "Low"), "DO IT", IF(AND([Benefit Level: High or Low]@row = "High", [Effort Level: High or Low]@row = "High"), "RESCOPE", IF(AND([Benefit Level: High or Low]@row = "Low", [Effort Level: High or Low]@row = "Low"), "CONSIDER IT", IF(AND([Benefit Level: High or Low]@row = "Low", [Effort Level: High or Low]@row = "High"), "IGNORE"))))
Hope this helps,
Dave
-
This worked perfectly! Thank you!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.2K Get Help
- 431 Global Discussions
- 152 Industry Talk
- 490 Announcements
- 5.2K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 74 Community Job Board
- 501 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 306 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!