Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
119 | |
78 | |
58 | |
52 | |
46 |
User | Count |
---|---|
170 | |
117 | |
63 | |
58 | |
51 |