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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello,
I am buildinga report for a sports organisation. We've come up with a methodology that ranks clubs. The methodology currently covers three different facets of the clubs at the moment. Those being Future Club Prospects, Club Popularity and Club Support. Each club is ranked against each of three facets separately and then the governing body can determine a weighting for each facet. For example, Future Prospects might have a weighting of 50%, Popularity might be weighted at 30% and Support is therefore 20%. Each of the three separate rankings is multiplied by their weighting and all three are added together to generate a score. I then want to rank all clubs by their score.
The above is working well for me with the dax I have posted below. However, I'd like to modify it to only return a table that shows the Top 10 Clubs who would be deemed to be 'Thriving'. I'd also like to return a second table that only shows the Bottom 10 Clubs who would be deemed to be 'At Risk'.
I am struggling to return the two separate tables I need above. Can someone please assist?
This is my dax to determine each club's score:
Solved! Go to Solution.
Hi,
thank you very much for your message.
If it is OK with you, please share your sample pbix file's link (onedrive, googledrive, dropbox, others), and then I can try to come up with a more accurate solution that meets your requirement.
Thank you.
Hi,
I assume [Score] is a measure and you want to create table visualization.
Please try to write a measure something like below.
Top 10 rank measure: =
CALCULATE (
[Score],
KEEPFILTERS ( TOPN ( 10, ALL ( Clubs[Club Name] ), [Score], DESC ) )
)
Hi Jihwan,
That is very nearly the answer I think. I am getting a few issues though:
Your thoughts would be greatly appreciated!
Hi,
thank you very much for your message.
If it is OK with you, please share your sample pbix file's link (onedrive, googledrive, dropbox, others), and then I can try to come up with a more accurate solution that meets your requirement.
Thank you.