Forum Discussion
Rank with the actual values
I'm not on my PC, but from memory.
Add a slicer and select one of the types
Create a table and add the names
write a measure like this.
Rank = rankx(all(tablename[name]),max(tablename[speed])). This should give the order (i.e. Rank).
If you just want the speed, just use
=max(tablename[speed])
When i use this rank, it only gives all the different persons rank 1
- MattAllington9 years ago
Community Champion
sorry, that was a silly mistake. Try this
Rank = rankx(all(data[Name]),CALCULATE(max(data[Speed])))
- Smits4749 years agoFrequent Visitor
Same problem. And i only get the values of the person who is selected in my slicer, but i want all the other persons too. Maybe the top n function is better to use?
- MattAllington9 years ago
Community Champion
I tested this measure. If you put people on rows of a table, and a slicer on the type, it will give you the rank for each person.