I have a formula that calculates the "Planned % Complete" based on start and end date, with no weighting. We use it as a general guide because there is no planned % complete provided by Smartsheet.
Formula: =IF(Start14 >= TODAY(), 0, IF(Finish14<= TODAY(), 1, (NETWORKDAY(Start14, MIN(TODAY(), Finish14)) / (NETWORKDAY(Start14, Finish14)))))
This has been working fine but I would like to add an element that averages the children rows at the parent level as calculating at the parent level is a bit skewed.
Any ideas on how I can add an additional IF statement that says IF parent row, avg children, else calculate the above formula?