Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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 ) )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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.
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
19 | |
18 | |
18 | |
17 |
User | Count |
---|---|
34 | |
25 | |
18 | |
16 | |
13 |