Forum Discussion
Duplicate ranking
- 10 months ago
Hello lherbert501
Try this DAX
If you have a unique field (like CustomerID, StoreID, etc.), include it in the expression:
Rank =
VAR selectedMetric =
SELECTEDVALUE(Slicer[Value])
RETURN
RANKX(
ALLSELECTED(table1[field1], table1[field2], table1[field3]),
[Total Spend] * 1000000 + table1[UniqueID], // tie-breaker
,
DESC
)
If my response helped you, please consider clicking
Accept as Solution ✅ and giving it a Like 👍 – it helps others in the community too.
Thanks,
Connect with me on:
LinkedIn - 10 months ago
VAR rankSales =
RANKX (
ALLSELECTED ( table1[field1], table1[field2], table1[field3] ),
[Total Spend]+RAND()/1000,
,
DESC
)
Hi,
In the orderby argument of the RANK() function, use the ORDERBY() function and in there you can specify as many columns as you want to order by (it can include a combination of measures and columns). To receive specific help, share some data to work with. Share data in a format that can be pasted in an MS Excel file.