Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have a requirement where I have to rank members based on the weight that they have. Like below image:
How can I calculate the weights and rank them based on that score? Thank you!
Solved! Go to Solution.
Hi @Anonymous ,
Here I create a sample to have a test.
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.
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.
Hi @Anonymous ,
Here I create a sample to have a test.
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.
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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
56 | |
38 | |
34 |
User | Count |
---|---|
99 | |
56 | |
51 | |
44 | |
40 |