Planned % Complete
Hi,
I am trying to add a formula to my project plan in order that I can determine what the planned % completion should be.
I found a thread that recommended using =NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row)
However, this returns:
">" 100% if today is ">" than the planned end date and
"<"0% of the task is not yet scheduled to start.
I have therefore tried to use IF but I keep getting #INCORRECT ARGUMENT SET
=IF(OR(NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row), >0.99, 1, IF(NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row) < 0, 0, IF(OR(NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row), >0, NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row < 1, NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row)))))))
I want the formula to return:
1 (100%) if the planned completion is ">" 1,
0 (0%) if the planned completion is "<" 0
OR if none of the above apply return the result from the original formula of NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row)
Thank you 😊
Best Answer
-
Try this:
=MAX(MIN(NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row), 1), 0)
Answers
-
Try this:
=MAX(MIN(NETWORKDAYS([Start Date]@row, [Column18]131) / NETWORKDAYS([Start Date]@row, [End Date]@row), 1), 0)
-
Hi,
I managed to solve this for anyone else who is interested: (column 18 is a feeder column with formula =Today() )
=IF(NETWORKDAYS([Start Date]@row, [Column18]@row) / NETWORKDAYS([Start Date]@row, [End Date]@row) > 0.99, 1, IF(NETWORKDAYS([Start Date]@row, [Column18]@row) / NETWORKDAYS([Start Date]@row, [End Date]@row) < 0, 0, NETWORKDAYS([Start Date]@row, [Column18]@row) / NETWORKDAYS([Start Date]@row, [End Date]@row)))
JW
😉
-
Thank you Paul, works perfectly and so much less convoluted than my solution 😊
JW
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!