Checkbox Column - Column Formula
Current Statuses = "Complete", "Incomplete", "Pending" based on below formula:
=IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", IF(AND(ISBLANK([Recovery Collected Date]@row), ISBLANK([Anticipated Collection Date]@row)), "Incomplete", IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row)), ISBLANK([Recovery Collected Date]@row)), "Pending", "")))
I would also like to add the status, "N/A" which will be based on a checkbox column. How can this be added to my current formula?
Best Answer
-
Create a column called NA and add this to the beginning of your formula and hit enter, Smartsheet will add the closing parentheses:
IF(NA@row = true, "N/A",
So:
=IF(NA@row = true, "N/A", IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", IF(AND(ISBLANK([Recovery Collected Date]@row), ISBLANK([Anticipated Collection Date]@row)), "Incomplete", IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row)), ISBLANK([Recovery Collected Date]@row)), "Pending", ""))))
Answers
-
Create a column called NA and add this to the beginning of your formula and hit enter, Smartsheet will add the closing parentheses:
IF(NA@row = true, "N/A",
So:
=IF(NA@row = true, "N/A", IF(NOT(ISBLANK([Recovery Collected Date]@row)), "Complete", IF(AND(ISBLANK([Recovery Collected Date]@row), ISBLANK([Anticipated Collection Date]@row)), "Incomplete", IF(AND(NOT(ISBLANK([Anticipated Collection Date]@row)), ISBLANK([Recovery Collected Date]@row)), "Pending", ""))))
-
Thanks @James Keuning!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!