IFS function with AND
Dear community,
Does anyone knows how to create a formula using IFS? Smartsheet doesn't seem to have IFS. The formula I would like to create on my sheet:
=IFS(AND(ISBLANK(B3),ISBLANK(H3)),"",D3="Decision","NA",AND(B3<>"",ISBLANK(H3)),"Open",AND(B3<>"",H3<>""),"Closed"))
Thanks in advance.
Fernanda
Best Answer
-
You would use a nested IF instead where each of the next IF goes in the "value if false" portion of the IF before it.
=IF(AND(B3 = "", H3 = ""), "", IF(D3 = "Decision", "NA", IF(AND(B3 <> "", H3 = ""), "Open", IF(AND(B3 <> "",H3 <> ""), "Closed")))
Answers
-
You would use a nested IF instead where each of the next IF goes in the "value if false" portion of the IF before it.
=IF(AND(B3 = "", H3 = ""), "", IF(D3 = "Decision", "NA", IF(AND(B3 <> "", H3 = ""), "Open", IF(AND(B3 <> "",H3 <> ""), "Closed")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 142 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
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!