Evaluate if a Date column is blank
I have three columns with the below formula in the "Helper - Overdue" column. This works correctly for when there is a date in the "Deadline" column and the "Item Completed" box is not checked. It also works correctly for when the box is checked. The part that is not working is when the date column is blank, it shows as "Overdue." I don't want it to do this. I just want it to be blank. Or it could be "Not Overdue" since it technically is not overdue. I only want it to show "Overdue" when the date is in the past and the box is not checked.
I tried using the Not(IsBlank( combo, but couldn't get it to work correctly.
=IF(AND([Item Completed]@row = 0, Deadline@row < TODAY()), "Overdue", "Not Overdue")
All help is greatly appreciated.
Thanks.
Best Answer
-
=IF(ISBLANK(Deadline@row), "", IF(AND([Item Completed]@row = 0, Deadline@row < TODAY()), "Overdue", "Not Overdue")
Answers
-
=IF(ISBLANK(Deadline@row), "", IF(AND([Item Completed]@row = 0, Deadline@row < TODAY()), "Overdue", "Not Overdue")
-
I didn't think of taking the ISBLANK out of the original IF statement. Great idea. Thanks.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 454 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!