Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi!
I have a table that looks like that:
where each name has a father (except for the ones at the first level) and only the names in the highest level has a total (the highest level doesn't habe to be 4).
I'm trying o sum up each name by it's sons total, so the final table should look like that:
in addition I want to show this table in the power bi in this format:
with an option to drill down and up.
Please if anyone can help, Im still new to power bi and learning on the way.
Solved! Go to Solution.
Hi @shakedb70 ,
in Power BI you can do this by using the PATH functions and displaying the hierarchy in a matrix.
First you determine all parent elements per level with PATH.
hierarchy path = PATH('Table'[Name],'Table'[father name])
Then you decompose the path with PATHITEM
hl1 = PATHITEM('Table'[hierarchy path],1)
For more info check out the attached sample file.
There is also a DAX Pattern post on the topic:
https://www.daxpatterns.com/parent-child-hierarchies/
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Hi @shakedb70 ,
in Power BI you can do this by using the PATH functions and displaying the hierarchy in a matrix.
First you determine all parent elements per level with PATH.
hierarchy path = PATH('Table'[Name],'Table'[father name])
Then you decompose the path with PATHITEM
hl1 = PATHITEM('Table'[hierarchy path],1)
For more info check out the attached sample file.
There is also a DAX Pattern post on the topic:
https://www.daxpatterns.com/parent-child-hierarchies/
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
86 | |
84 | |
83 | |
67 | |
49 |
User | Count |
---|---|
131 | |
111 | |
96 | |
71 | |
67 |