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
- 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!