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
- Smartsheet Customer Resources
- 62.1K Get Help
- 351 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 133 Brandfolder
- 127 Just for fun
- 127 Community Job Board
- 455 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!