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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

dynamic rank with hierarchy in matrix

Hi, I want to create a rank measure with dynamic and should consider the slicer, but I have no idea how to solve it, here is my data and expected result, hope to get some ideas to solve it.

data:

null_0-1673535131211.png

I dragged the category and sub category in rows, and "value" to values, 

expected result with rank of total in matrix, the blue background is total row in matrix, the rank should be order by descending

null_1-1673535212002.png

 

 

 

1 ACCEPTED SOLUTION
Mikelytics
Resident Rockstar
Resident Rockstar

HI @Anonymous 

 

Please try the following:

 

data

Mikelytics_1-1673537095329.png

 

Measure:

 

RANK | 2 dim rank = 

    IF(
        ISINSCOPE(SampleDynamicRank[sub_category]),

        RANKX(
            ALLEXCEPT(SampleDynamicRank,SampleDynamicRank[Category])
            ,CALCULATE(SUM(SampleDynamicRank[value]))
        )
        ,
        RANKX(
            ALL(SampleDynamicRank[category])
            ,CALCULATE(SUM(SampleDynamicRank[value]))
        )
    )

 

@Anonymous I updated the formula by replacing HASONEVALUE with ISINSCOPE. THe version before had a bug when there was only one sub category under a category. Using ISINSCOPE it works fine

 

Result

Mikelytics_0-1673538142486.png

 

 

Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.

 

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

View solution in original post

1 REPLY 1
Mikelytics
Resident Rockstar
Resident Rockstar

HI @Anonymous 

 

Please try the following:

 

data

Mikelytics_1-1673537095329.png

 

Measure:

 

RANK | 2 dim rank = 

    IF(
        ISINSCOPE(SampleDynamicRank[sub_category]),

        RANKX(
            ALLEXCEPT(SampleDynamicRank,SampleDynamicRank[Category])
            ,CALCULATE(SUM(SampleDynamicRank[value]))
        )
        ,
        RANKX(
            ALL(SampleDynamicRank[category])
            ,CALCULATE(SUM(SampleDynamicRank[value]))
        )
    )

 

@Anonymous I updated the formula by replacing HASONEVALUE with ISINSCOPE. THe version before had a bug when there was only one sub category under a category. Using ISINSCOPE it works fine

 

Result

Mikelytics_0-1673538142486.png

 

 

Best regards
Michael
-----------------------------------------------------
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Appreciate your thumbs up!
@ me in replies or I'll lose your thread.

 

 

 

------------------------------------------------------------------
Visit my blog datenhungrig which I recently started with content about business intelligence and Power BI in German and English or follow me on LinkedIn!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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