Forum Discussion
Top Customers using RANKX and SUMX
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!
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/367415Can 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.⚡
2 Replies
- amitchandakSuper User
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/367415Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
- parry2kSuper User
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.⚡