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

Be 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

Reply
Anonymous
Not applicable

undefined

Hi,

 

I have a requirement where I have to rank members based on the weight that they have. Like below image:
image.png

 

How can I calculate the weights and rank them based on that score? Thank you!

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

Hi @Anonymous ,

 

Here I create a sample to have a test.

RicoZhou_0-1655108583867.png

M1 = 5* CALCULATE(SUM('Table'[Value]))
M2 = 10* CALCULATE(SUM('Table'[Value]))

...

M5 = 5* CALCULATE(SUM('Table'[Value]))

Create a measure to calculate the rank.

Rank = 
VAR _SUMMARIZE =
    SUMMARIZE (
        ALL ( 'Table' ),
        'Table'[Member],
        "SUM_MEASURE",
            SWITCH ( [Member], "A", [M1] + [M2] + [M3], "B", [M1] + [M2], "C", [M1] + [M5] )
    )
VAR _ADDRANK =
    ADDCOLUMNS (
        _SUMMARIZE,
        "RANK", RANKX ( _SUMMARIZE, [SUM_MEASURE],, DESC, DENSE )
    )
RETURN
    SUMX ( FILTER ( _ADDRANK, [Member] = MAX ( 'Table'[Member] ) ), [RANK] )

Result is as below.

RicoZhou_1-1655108723689.png

 

Best Regards,
Rico Zhou

 

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

1 REPLY 1
v-rzhou-msft
Community Support
Community Support

Hi @Anonymous ,

 

Here I create a sample to have a test.

RicoZhou_0-1655108583867.png

M1 = 5* CALCULATE(SUM('Table'[Value]))
M2 = 10* CALCULATE(SUM('Table'[Value]))

...

M5 = 5* CALCULATE(SUM('Table'[Value]))

Create a measure to calculate the rank.

Rank = 
VAR _SUMMARIZE =
    SUMMARIZE (
        ALL ( 'Table' ),
        'Table'[Member],
        "SUM_MEASURE",
            SWITCH ( [Member], "A", [M1] + [M2] + [M3], "B", [M1] + [M2], "C", [M1] + [M5] )
    )
VAR _ADDRANK =
    ADDCOLUMNS (
        _SUMMARIZE,
        "RANK", RANKX ( _SUMMARIZE, [SUM_MEASURE],, DESC, DENSE )
    )
RETURN
    SUMX ( FILTER ( _ADDRANK, [Member] = MAX ( 'Table'[Member] ) ), [RANK] )

Result is as below.

RicoZhou_1-1655108723689.png

 

Best Regards,
Rico Zhou

 

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

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.