Forum Discussion
saranee
8 years agoHelper I
Dynamic ranking based on date
Hi all, Request your help on this. We are basically having a table with Name,Date and based on date we are assigning Rank. We have calculated column to calculate rank:RANKX(FILTER(Table1,Tab...
- 8 years ago
Try this MEASURE for dynamic RANKING
RANK = RANKX ( FILTER ( ALLSELECTED ( Table1 ), Table1[Name] = SELECTEDVALUE ( Table1[Name] ) ), CALCULATE ( SELECTEDVALUE ( Table1[Date] ) ), , DESC, DENSE )
Ashish_Mathur
8 years agoSuper User
Hi,
Try this measures
Date value=SUM(Table1[Date])
Rank=RANKX(ALL(Table1[Date]),[Date value])
If this does not help, then share the link from where i can download your file.