Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Top/Bottom N Rows based on selected filter values

Hoping for someone to point me in the correct direction. I seem to be going in circles with my code.

 

I'm needing to filter countries in a table visual based on selections in a filter (currently works). Then I need to display the Top 10/Bottom 10 within those filtered countries (mostly works). The only issues I'm hitting is when there is less than 10 to display. At that point, I'm getting a display of all the countries, rather than a limited list. 

3 REPLIES 3
AlB
Community Champion
Community Champion

@Anonymous

 

Can you show your code or share the pbix file so that people can try to see what the issue is? It's kinda hard with the info provided.

Anonymous
Not applicable

@AlB

 

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

Community Support Team _ Cherie Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.