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'm trying to understand why my formula isn't working the way I expect it to... I'm still fairly new to DAX so any help would be greatly appreciated!
I'm trying to rank the customers according to their sales value.. but as you can see, the ranking isn't giving me the correct result.
Rank_Customer = RANKX(ALL(Customer[CustomerName]), SUMX(RELATEDTABLE('DataTable'), DataTable[Sales_YTD]))
Sales_YTD = TOTALYTD([Total_Sales], Period[Date])
Total_Sales = CALCULATE(SUM(DataTable[Value]), FILTER(DataTable, DataTable[Type]="SALES"))
Could someone help point out what I'm doing wrong please? Thank you!
Solved! Go to Solution.
@psiripun , Can not say without looking at data. Please try like
Rank_Customer = RANKX(ALL(Customer[CustomerName]), [Sales_YTD ],,desc,dense)
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@psiripun I think this is what you need
Rank_Customer = RANKX(ALL(Customer[CustomerName]), [Sales_YTD]),,DESC, DENSE )
change Ascending/Descending based on your need.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem.
It is a token of appreciation! ⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
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.
@psiripun , Can not say without looking at data. Please try like
Rank_Customer = RANKX(ALL(Customer[CustomerName]), [Sales_YTD ],,desc,dense)
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
https://community.powerbi.com/t5/Community-Blog/Dynamic-TopN-made-easy-with-What-If-Parameter/ba-p/3...
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@psiripun I think this is what you need
Rank_Customer = RANKX(ALL(Customer[CustomerName]), [Sales_YTD]),,DESC, DENSE )
change Ascending/Descending based on your need.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem.
It is a token of appreciation! ⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
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.
User | Count |
---|---|
123 | |
76 | |
63 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |