Overall % Complete of all sub-deliverables with 'Development' in name

Hello,

I am attempting to create 2 separate sheet summary fields that specify an overall % complete based on sub-parent task names. I would like to create an overall % complete for all 'PIR Facility Components' tasks as well as a combined overall % complete for 'Facility Application Development Changes' and 'Host/AN Program Changes'; basically providing overall % complete of requirements gathering (PIR Facility Components) as well as software development tasks (Facility Application.... and Host/AN Program changes). I'm not sure if it's relevant, but I am using the =avg(children()) formula to acquire my percentages and not the % complete of child rows + assigned duration method of determining % complete.

I can add "Development" to the 'Host/AN Program Changes' sub-parent tasks so "Development" exists in both development-specific tasks if that makes the formula easier. Any ideas?


I appreciate any insight. Thank you!



Best Answers

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    You'll need a column that brings the parent data onto every row.

    =PARENT([Task Name]@row)


    From there you would use something like this to get the overall %:

    =AVG(COLLECT([% Complete]:[% Complete], [Helper Column]:[Helper Column], @cell = "Facility Application Development Changes"))

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    You would need to incorporate an OR function:


    =AVG(COLLECT([% Complete]:[% Complete], [Helper Column]:[Helper Column], OR(@cell = "Facility Application Development Changes", @cell = "Host/AN Program Changes")))

    Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!

    CERTIFIED SMARTSHEET PLATINUM PARTNER

    10xViz.com

Answers