Forum Discussion
Top/Bottom N Rows based on selected filter values
Don't think I can share the .pbix because of the contract's privacy agreements, but I can share some snippets of code. I anonymized some stuff.
Ranking the countries:
CountryRank = RANKX('Company_Lookup','Company_Lookup'[Country_Final])Calculating the total number of times a metric has met or exceeded the selected benchmark:
Hit_rate =
VAR result =
CALCULATE (
'A_Raw'[A_TargetYN] + 'B_Raw'[B_TargetYN]
+ C_Raw'[C_TargetYN]
+ 'D_Raw [D_TargetYN]
+ 'E_Raw'[E_TargetYN]
+ 'F_Raw'[F_TargetYN]
)
RETURN
result
Measure we're using currently to generate a rank for the top 10/bottom 10:
HitRank = calculate(1000*[Hit_rate] + MAX(Company_Lookup[CountryRank]))
I'm using the TopN feature in the Table visualization, based on HitRank.
Hi Anonymous
It seems you may try to use ALLSELECTED Funtion to create rank measure. Here is the post for your reference. If it is not your case, please share some simplified sample data for your scenario so that we could help further on it. You can upload it to OneDrive or Dropbox and post the link here. Do mask sensitive data before uploading.
How to Get Your Question Answered Quickly
Regards,
Cherie