Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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! |
|
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 46 | |
| 34 | |
| 27 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 59 | |
| 58 | |
| 39 | |
| 22 | |
| 20 |