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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Anonymous
Not applicable

Help with workers hierarchy in Matrix

I would like to have sorted data in Matrix visual where I will have hierarchy - Director -> Regional Manager -> Unit Manager ->Agent.

Now every data is in one table.

Example:

mavericek_0-1708342044557.png

 

How to do this???

2 REPLIES 2
Anonymous
Not applicable

Thank you for your help. I think I managged this in Power Query.

Anonymous
Not applicable

Hi @Anonymous ,
From what I know, combined with the data you provided, it doesn't seem possible to accomplish the goal of displaying the hierarchy in a matrix, but if you want to do an accumulation calculation on the data, you can do it using this measure:

 

Column = 
CALCULATE(
    SUM('Table'[ITEM SOLD]),
    FILTER(
        ALL('Table'),
        'Table'[ID] <= EARLIER('Table'[ID])
    )
)

 

Final output

vheqmsft_0-1708397440707.png

Best regards,

Albert He

 

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Users online (14,561)