Formula
I need assistance with a formula. I need to track the number of remaining business days until a project "Due Date," but once a "Completion Date" has been entered, I want that number of days to stop counting so that I can see how many days the project was over due.
This is what I have so far:
=IF(Status@row = "Complete", [Due Date]@row - [Completion Date]@row, [Due Date]@row - TODAY())
Answers
-
You will need another column - Completion Date. The new formula will test that column for a date, if there a date, then it will calculate using Completion Date, not Due Date. Something like this:
=IF(ISDATE([Completion Date]@row), NETWORKDAYS([Completion Date]@row]@row, TODAY()), NETWORKDAYS([Due Date]@row, TODAY()))
-
So I entered this formula:
=IF(ISDATE([Completion Date]@row), NETWORKDAY([Completion Date]@row, [Due Date]@row), NETWORKDAY(TODAY(), [Due Date]@row))
Due Date: 8/24/22
Completion Date: 8/24/22
And my answer is "1"
I have played with the dates and you cannot get the "Remaining Days" to equal zero.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.5K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 480 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 72 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!