Record the remaining days on a project
Hello,
I have a start and end date for planned work. I'd like to see to show in a column the amount of days remaining on the project.
The issue I run into with most formulas is if the start and end are in the future, the counts are all off, and I'd like it to not record anything if the end is in the past.
I was using this formula to get the days remaining, but it doesn't take into account all the specifics I need.
=IFERROR(NETWORKDAYS([Planned Work End]1, TODAY()) * -1, "")
I'd like it to only show for ones where the Planned Work End is in the future, and show the amount of days between start and end, for projects where the start is in the future.
Best Answer
-
Try something like this:
=IF([End Date]@row < TODAY(), "In the past", IF([Start Date]@row > TODAY(), NETWORKDAYS([Start Date]@row, [End Date]@row), NETWORKDAYS(TODAY(), [End Date]@row)))
This will return:
- "In the past" for anything that has an End Date in the past (can change to 0, or blank)
- The number of working days between the start/end for anything starting in the future
- The number of days remaining for anything that has already started and the end date is in the future.
Answers
-
Try something like this:
=IF([End Date]@row < TODAY(), "In the past", IF([Start Date]@row > TODAY(), NETWORKDAYS([Start Date]@row, [End Date]@row), NETWORKDAYS(TODAY(), [End Date]@row)))
This will return:
- "In the past" for anything that has an End Date in the past (can change to 0, or blank)
- The number of working days between the start/end for anything starting in the future
- The number of days remaining for anything that has already started and the end date is in the future. -
Hi @Ian44
have a try with this one.
=IF(OR([% Complete]@row = 100, [End Date]@row < TODAY()), "", IF(ISERROR(NETWORKDAYS(TODAY(), [End Date}@row)), "", NETWORKDAYS(TODAY(), [End Date]@row)))
It's working for me on a test sheet, but I haven't tried on a 'live' sheet.
Paul Reeves. MBA, LSSBB
-
That worked like magic! Thank you so very much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.6K Get Help
- 435 Global Discussions
- 152 Industry Talk
- 495 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 508 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!