Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Parent-child matrix visualization with parent as first child row

Given the following table

IDParent IDAMOUNTPATH
1 101
21201|2
31301|3
42401|2|4
52501|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

 

1 ACCEPTED SOLUTION
v-alq-msft
Community Support
Community Support

Hi, @Anonymous 

 

Based on your description, I created data to reproduc your scenario. The pbix file is attached in the end.

Table:

b1.png

 

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:

b2.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-alq-msft
Community Support
Community Support

Hi, @Anonymous 

 

Based on your description, I created data to reproduc your scenario. The pbix file is attached in the end.

Table:

b1.png

 

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:

b2.png

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

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

 

amitchandak
Super User
Super User

@Anonymous , refer if this can help

https://www.thebiccountant.com/2019/10/03/parent-child-hierarchies-with-multiple-parents-in-power-bi-with-power-query/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

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.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.