Formula Help with Past Dates

Hi there, I am trying to get my status row to say Late when the following are met:
1.) Due Date is in the past
2.) Due Date happens in the past to Date Completed
3.) Date Completed is Blank
Best Answer
-
Hi @mragans23,
Something along these lines?
=IF(AND([Due Date]@row < TODAY(), [Date Completed]@row = ""), "Late", IF([Date Completed]@row > [Due Date]@row, "Late", "On Time"))
If the due date is in the past and date completed is blank, Status is "Late". If the Completed Date is later than the Due Date, then Status is "Late", otherwise "On Time".
Hope this helps, but if I've misunderstood something or you've any problems/questions then just let us know!
Answers
-
I started with this, but do not have all of the argument in:
=IF(ISBLANK([Date Completed]@row), "Late", IF(AND([Due Date]@row < TODAY()), "Late", "On Time"))
-
Hi @mragans23,
Something along these lines?
=IF(AND([Due Date]@row < TODAY(), [Date Completed]@row = ""), "Late", IF([Date Completed]@row > [Due Date]@row, "Late", "On Time"))
If the due date is in the past and date completed is blank, Status is "Late". If the Completed Date is later than the Due Date, then Status is "Late", otherwise "On Time".
Hope this helps, but if I've misunderstood something or you've any problems/questions then just let us know!
-
Thank you thank you, that works great.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!