Formula for checking a box if a date is in the past and another date is not completed.
So I am trying to automate a tracker so that it marks a task as overdue if the end date is in the past, if there is no date in the end date I want it to stay unchecked and if the completed date is entered i want it to stay unchecked. This is what I have but it is telling me the syntax isn't right and I cant spot the problem. Any advice appreciated.
=IF(ISBLANK(End Date]@row), " ", IF([End Date]@row < TODAY( )), IF(ISBLANK([Actual end date FY 24/25]@row) , 1, " "), " ")))
Best Answer
-
You're missing an open square bracket on the first [End Date]@row reference and an extra close parenthesis for your 2nd if statement,
=IF(ISBLANK([End Date]@row), " ", IF([End Date]@row < TODAY(), IF(ISBLANK([Actual end date FY 24/25]@row) , 1, " "), " "))
I think this should work out for you now.
Jason Tarpinian - Sevan Technology
Smartsheet Aligned Partner
Answers
-
You're missing an open square bracket on the first [End Date]@row reference and an extra close parenthesis for your 2nd if statement,
=IF(ISBLANK([End Date]@row), " ", IF([End Date]@row < TODAY(), IF(ISBLANK([Actual end date FY 24/25]@row) , 1, " "), " "))
I think this should work out for you now.
Jason Tarpinian - Sevan Technology
Smartsheet Aligned Partner
-
@Jason Tarpinian thank you so much that has worked perfectly. Much Appreciated. 😁
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!