Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I need to give a table wich contains top 10 error % over the last year. So I understood I need a ranking. But can't get it to work:
The average is in column 'Avg Error %' and is now sorted. In the column after I need the rank.
I used:
RANK Avg Error % =
RANKX( ALLSELECTED(ErrorTotalsDay[DtKey_Checkdate]); CALCULATE(AVERAGE(ErrorTotalsDay[Error % Day]));;ASC)
Solved! Go to Solution.
Hey @Wisselaar Create these measures
Avg error = Avg(error)
Rank Avg Error = rankx(allselected(rulekey),[Avg error],,desc
Post this, drag this measure in table and in the filter pane just apply a filter that this measure should be less than 11, and it will always show top 10 records.
Hey @Wisselaar Create these measures
Avg error = Avg(error)
Rank Avg Error = rankx(allselected(rulekey),[Avg error],,desc
Post this, drag this measure in table and in the filter pane just apply a filter that this measure should be less than 11, and it will always show top 10 records.
The TOP N Filter option isn't there.
Hi @Wisselaar
You don't need to create a Rank measure. You can use the filter panel and add a condition to show only TOP 10 values based on the Avg. Error % measure.
_______________
If I helped, please accept the solution and give kudos! 😀
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
102 | |
68 | |
48 | |
40 | |
34 |
User | Count |
---|---|
154 | |
112 | |
60 | |
54 | |
35 |