The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
111 | |
80 | |
78 | |
43 | |
37 |
User | Count |
---|---|
158 | |
111 | |
64 | |
59 | |
54 |