Afternoon,
I am trying to illustrate some expected % vs actual % completed, using two dates.
So far I have input the below which based off today shows the task should be 42% complete.
=IF([Start Date]@row <= TODAY(), NETWORKDAYS([Start Date]@row, MIN(TODAY(), [End Date]@row)) / [Duration Between Start & End Date]@row, 0)
When I build out this formula to see the expected % complete as at 30 June, I would expect this to be 100% as in line with the end date being 30/06/24. However it comes out at 71.8%.
Can you point out where I am going wrong please?
Thanks in advance