Hi All,
My Smartsheet has Rollup / Summary Tasks, Deliverables/Tasks and Milestones. On the Summary Sheet, I only want to count the actual Deliverables/Tasks i.e. not the Rollup/Summary tasks or milestones.
I found how to add a column that determines whether a row is a child or a parent using -
=IF(COUNT(CHILDREN([Task Name]@row)) = 0, 1)
And I've managed to add a formula to my Summary sheet that reads -
=COUNTIFS(Workstream:Workstream, "Supplier Engagement", Status:Status, "Yet to Start", Child:Child, 1, Duration:Duration, "<>0")
However, I dont really want the Child column in my sheets and would prefer to have the formula in the Summary sheet (so replacing 'Child:Child, 1')
Any guidance on how to combine these?
Thank you