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
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!