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