IF AND IS BLANK formula
I am trying to make a formula for an approval flow. I am trying to distinguish between requests that require approval and those that only require being informed. I am currently using the following formula, where the Reviewer 1 and Approver 1 are text columns containing names. I'm receiving the #INCORRECT ARGUMENT SET error code.
=IF(AND(ISBLANK([Reviewer 1]@row, ISBLANK([Approver 1]@row), "Inform", "Approve")))
Best Answers
-
You forgot to close out the AND function. Try moving on of the closing parenthesis from the very end to after the second ISBLANK function.
-
Thanks for the quick response! I adjusted and it worked. Thanks!
=IF(AND(ISBLANK([Reviewer 1]@row), ISBLANK([Approver 1]@row)), "Inform", "Approve")
Answers
-
You forgot to close out the AND function. Try moving on of the closing parenthesis from the very end to after the second ISBLANK function.
-
Thanks for the quick response! I adjusted and it worked. Thanks!
=IF(AND(ISBLANK([Reviewer 1]@row), ISBLANK([Approver 1]@row)), "Inform", "Approve")
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.2K Get Help
- 360 Global Discussions
- 199 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!