Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
I have a table of data like this:
I need to be able to show results by client & country, filtering by Year & Version, which then shows the GP % of Revenue (already created as a measure called GP %) ranked against all other client country combinations for the chosen Year & Version. So the output would look something like this:
Does anyone have any ideas? Thanks for looking!
Solved! Go to Solution.
Hi @Anonymous ,
You may create rank using Column or measure like DAX below.
Column1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=EARLIER(Table1[Country])&&Table1[Year & Version]=EARLIER(Table1[Year & Version])),Table1[GP],,DESC, Skip) Measure1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=MAX(Table1[Country])&&Table1[Year & Version]=MAX(Table1[Year & Version])),MAX(Table1[GP]),,DESC, Skip)
You can go through the link https://docs.microsoft.com/zh-cn/dax/rankx-function-dax to learn more about the RANKX .
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
You may create rank using Column or measure like DAX below.
Column1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=EARLIER(Table1[Country])&&Table1[Year & Version]=EARLIER(Table1[Year & Version])),Table1[GP],,DESC, Skip) Measure1= RANKX(FILTER(ALLSELECTED(Table1),Table1[Country]=MAX(Table1[Country])&&Table1[Year & Version]=MAX(Table1[Year & Version])),MAX(Table1[GP]),,DESC, Skip)
You can go through the link https://docs.microsoft.com/zh-cn/dax/rankx-function-dax to learn more about the RANKX .
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Anonymous I believe this post expalains Rank in detail and will get you going.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
78 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
84 | |
48 | |
48 | |
48 |