I am attempting to do a Expected % complete and I cannot determine how to align my parent rows calculation to match the automated % complete calculation within Smartsheet.
Currently all children row formulas are the following:
=ROUND(IF([Estimated Start Date]@row < TODAY(), MIN((TODAY() - [Estimated Start Date]@row) / ([Estimated Finish Date]@row - [Estimated Start Date]@row), 1), 0), 2)
And whether I use the same formula for parent rows or an AVG the calculations do not align with the automated % complete parent rows:
Parent Rows as an average:
=AVG(CHILDREN())
Parent row as:
=ROUND(IF([Estimated Start Date]@row < TODAY(), MIN((TODAY() - [Estimated Start Date]@row) / ([Estimated Finish Date]@row - [Estimated Start Date]@row), 1), 0), 2)
I am curious how Smartsheet's calculates parent rows for % complete so I can attempt to match it.