Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. 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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
88 | |
85 | |
82 | |
65 | |
49 |
User | Count |
---|---|
138 | |
110 | |
104 | |
66 | |
64 |