Forum Discussion
CREsearch
6 years agoFrequent Visitor
Return nth ranked value based on criteria
In the below dataset I have a column that ranks the order/position of a value within a grouping. I'm trying to find a dax function that will allow me to return the nth largest value based within a gi...
Ashish_Mathur
Super User
6 years agoHi,
Try these measure
Rank value = MIN(Data[Rank])Reverse rank = RANKX(ALLEXCEPT(Data,Data[Address]),[Rank value],,DESC,dense)
To your visual drag the second measure.
Hope this helps.