Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have created matrix based on category and sum of error count. I have tried to create Rank based on sum of error count, am getting rank as 1 for all the category. I have used below formula.
Solved! Go to Solution.
@Anonymous , First create a calculated column
SumErrCntByCategory =
CALCULATE(
SUM(Sheet1[Err Cnt]),
ALLEXCEPT(Sheet1, Sheet1[Category])
)
Then create a Rank Measure
Rank =
RANKX(
ALL(Sheet1[Category]),
CALCULATE(SUM(Sheet1[Err Cnt])),
,
DESC,
DENSE
)
Use Rank Measure in your visual
Proud to be a Super User! |
|
@Anonymous , First create a calculated column
SumErrCntByCategory =
CALCULATE(
SUM(Sheet1[Err Cnt]),
ALLEXCEPT(Sheet1, Sheet1[Category])
)
Then create a Rank Measure
Rank =
RANKX(
ALL(Sheet1[Category]),
CALCULATE(SUM(Sheet1[Err Cnt])),
,
DESC,
DENSE
)
Use Rank Measure in your visual
Proud to be a Super User! |
|
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 46 | |
| 42 | |
| 34 | |
| 31 | |
| 21 |
| User | Count |
|---|---|
| 134 | |
| 126 | |
| 95 | |
| 80 | |
| 65 |