March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Given the following table
ID | Parent ID | AMOUNT | PATH |
1 | 10 | 1 | |
2 | 1 | 20 | 1|2 |
3 | 1 | 30 | 1|3 |
4 | 2 | 40 | 1|2|4 |
5 | 2 | 50 | 1|2|5 |
I want to create a Parent-Child visualization using matrix in Power BI.
Currently using DAX method PATH and PATHITEM I have this:
ID Amount
1 150
2 110
4 40
5 50
3 30
Is it possible to have :
ID Amount
1 150
1 10
2 110
2 20
4 40
5 50
3 30
Solved! Go to Solution.
Hi, @Anonymous
Based on your description, I created data to reproduc your scenario. The pbix file is attached in the end.
Table:
You may create calculated columns as below.
Path = PATH('Table'[ID],'Table'[Parent ID])
Level1 = PATHITEM('Table'[Path],1,TEXT)
Level2 =
var _level2 = PATHITEM('Table'[Path],2,TEXT)
return
IF(
PATHITEM('Table'[Path],2,TEXT)="",
[Level1],
_level2
)
Level3 =
var _level3 = PATHITEM('Table'[Path],3,TEXT)
return
IF(
_level3="",
IF(
[Level2]="",
[Level1],
[Level2]
),
_level3
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Based on your description, I created data to reproduc your scenario. The pbix file is attached in the end.
Table:
You may create calculated columns as below.
Path = PATH('Table'[ID],'Table'[Parent ID])
Level1 = PATHITEM('Table'[Path],1,TEXT)
Level2 =
var _level2 = PATHITEM('Table'[Path],2,TEXT)
return
IF(
PATHITEM('Table'[Path],2,TEXT)="",
[Level1],
_level2
)
Level3 =
var _level3 = PATHITEM('Table'[Path],3,TEXT)
return
IF(
_level3="",
IF(
[Level2]="",
[Level1],
[Level2]
),
_level3
)
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you @v-alq-msft that's what I wanted to do.
Just one last thing is it possible to avoid to repeat the node "1" three times?
(-)1
1
instead of
(-)1
(-)1
1
@Anonymous , refer if this can help
Thank you @amitchandak for your reply but in my case I don't have mutliple parents, when I unfold a parent node I just want to display the parent node among the children nodes, because the parent node has his own "amount" to display.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
134 | |
91 | |
90 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |