Percentage Past since start date & duration
Hi, I am looking for a formula to look at a percentage past based on the start date and the duration time. We are looking to see what the completed percentage should be and flag a WBS that may need to wither be updated or is falling behind.
I have worked out the formula for the # of days past since the start date, but that does not give me what I am after and when I change it into a % it goes to 300% which is not right.
=NETWORKDAYS([Start Date]@row, TODAY())
Any help would be great.
Thanks
Cathy
Best Answer
-
Try the below.
=NETWORKDAYS([Start Date]@row, TODAY()) / NETWORKDAYS([Start Date]@row, [End Date]@row)
You may want to consider adding a check for if it is past the end date...
Answers
-
Try the below.
=NETWORKDAYS([Start Date]@row, TODAY()) / NETWORKDAYS([Start Date]@row, [End Date]@row)
You may want to consider adding a check for if it is past the end date...
-
Thanks very much Leibel, that seems to have worked.
-
Sorry Leibel, I am just looking at it and yes the formula works, but is there away that if the % Complete is = to 100% that it stops the formula? I.e. % complete is %100 at the moment it keeps counting and it is now showing 700% because it is 7 days since the completed date. Hope that makes sense.
-
You can fix that by placing it into an If statement. See below:
=IF([End Date]@row > TODAY(), NETWORKDAYS([Start Date]@row, TODAY()) / NETWORKDAYS([Start Date]@row, [End Date]@row),1)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 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!