Hello SS Community,
Trying to write a formula to calculate % Complete off Days Completed versus going off project plan % Complete. This is for situations where PMs don't manage a project plan of tasks but simply track budget for a duration of time.
Days Completed =(NETWORKDAYS([Project Start Date]@row, TODAY()))
NetDays=IFERROR(NETWORKDAYS([Project Start Date]@row, [Target End Date]@row), " NO DATA")
This below formula is the problem:
=IFERROR(MAX([Days Completed]@row / NetDays@row, 100), " NEED DATES")
When I used this formula I get 10,000% instead of 100%
What's wrong with this formula?
Thank you
Christine