Forum Discussion
SinaA
3 years agoFrequent Visitor
Ranking System Error
I have a question regarding ranking salespeople based on their total sales across different cities using DAX. I'm aiming to have a consistent ranking for each salesperson, regardless of any filters a...
jiaopengzi
3 years agoFrequent Visitor
You can use the new function: RANK
to see if it is what you want, the first picture is unfiltered, and the second picture is added with a slicer filter
_RANK = RANK ( DENSE, ALL ( Sales ), ORDERBY ( [Sales], DESC ) )
- SinaA3 years agoFrequent Visitor
I appreciate your suggestion. However, I would like to rank salespeople (A, B,....) based on their total sales. Additionally, I would like to rank them when filtering for City or Category.
Thanks!
- jiaopengzi3 years agoFrequent Visitor
You can simulate a result. I don't quite understand what you mean.