Feel free to duplicate this yourself to see the problem:
I am using manually created durations in order to calculate the finish date and determine if a task could run late if it takes as long as forecasted.
The formula in Est. Duration is:
=NETWORKDAYS([Est. Start]@row, [Est. Finish]@row)
The formula in estDuration is:
=[Est. Duration]@row
The formula in calcFinish is:
=WORKDAY([Start Date]@row, VALUE(estDuration@row))
I need the helper for estDuration in order to convert Est. Duration to a number.
But if you look at the values, they are inconsistent. I understand that NETWORKDAYS includes the start date. In that case, "27" makes sense. But in going back the other way, with WORKDAY I should subtract 1.
However, look at the second row. It calculates the duration correctly AND it calculate the finish date correctly going back the other way.
Help!!!