Forum Discussion

k_rahul_g's avatar
k_rahul_g
Frequent Visitor
2 years ago

Multi level parent child hierarchy summarization

In a hierarchical table "BaseData" , I have to summarise an attribute "timespent" for all LEVELS of child work item. the problem is that the parent (where it need to be summarize) could also be a child of another workitem ( this is where Pathcontains might fail - dont suggest that please.)
The table is fully flattend table going upto 9 levels.


I have follwoing columns 

Workitem
Workitemtype ("Program Epic", SWApproval, Defect, Story, Work and Review, Task)
Path ( this is generated using DAX path function)
Level1
Level2
level 3 ..... Upto level 10. ( each level will be represented as an idependent workitem )
TimeSpent ( this is what i need to summarize)

Some Cases - Program EPIC-> Defect-> Story -> Task
OR
Defect-> Story->Work& Review-> Task
OR
Program Epic -> Program Epic -> Defect -> Story-> Task
OR
Program EPIC-> SWApproval-> Story -> Task

I want only the sum of child ( All levels) for a workitem type "SWApproval" going recursively in the table or using the flattened hierarchy.

The SWApproval could appear at any level and have children (grand children) workitems. 

 

Here is sample data. 

workItemIDworkItemTypetimespentestimatePathPathLengthLevel1Level2Level3Level4Level5Level6Level7Level8Level9Level1_categoryLevel2_categoryLevel3_categoryLevel4_categoryLevel5_categoryLevel6_category
72935Work and Review161653705|58010|69131|69689|7293555370558010691316968972935    Program EpicSWApprovalStoryWork and ReviewWork and Review
73180Work and Review0.5899418|97842|72103|72104|7318059941897842721037210473180    Program EpicSWApprovalProgram EpicStoryWork and Review
73357Work and Review202053705|58010|69131|69689|7335755370558010691316968973357    Program EpicSWApprovalStoryWork and ReviewWork and Review
73460Work and Review04595083|21464|32549|32844|7346059508321464325493284473460    FeatureProgram EpicStoryTaskWork and Review
74293Work and Review7414453705|58010|69131|69689|7429355370558010691316968974293    Program EpicSWApprovalStoryWork and ReviewWork and Review
74435Work and Review404099418|97842|72127|72128|7443559941897842721277212874435    Program EpicSWApprovalProgram EpicStoryWork and Review
74436Work and Review404099418|97842|72127|72128|7443659941897842721277212874436    Program EpicSWApprovalProgram EpicStoryWork and Review
74437Work and Review323299418|97842|72127|72128|7443759941897842721277212874437    Program EpicSWApprovalProgram EpicStoryWork and Review
74439Task161699418|97842|72127|72128|74436|744396994189784272127721287443674439   Program EpicSWApprovalProgram EpicStoryWork and ReviewTask
74440Task8899418|97842|72127|72128|74436|744406994189784272127721287443674440   Program EpicSWApprovalProgram EpicStoryWork and ReviewTask
74441Task323299418|97842|72127|72128|74436|744416994189784272127721287443674441   Program EpicSWApprovalProgram EpicStoryWork and ReviewTask
74463Work and Review404099418|97842|72091|72092|7446359941897842720917209274463    Program EpicSWApprovalProgram EpicStoryWork and Review
74484Task04099418|97842|72121|72122|74491|744846994189784272121721227449174484   Program EpicSWApprovalProgram EpicStoryWork and ReviewTask
74485Task01699418|97842|72121|72122|74489|744856994189784272121721227448974485   Program EpicSWApprovalProgram EpicStoryWork and ReviewTask
74489Work and Review04099418|97842|72121|72122|7448959941897842721217212274489    Program EpicSWApprovalProgram EpicStoryWork and Review

6 Replies