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 )
Anonymous
4 years agoNot applicable
Hello,
I want to create a new column ranking on the basis of certain values in a column (AHT). However, I want the ranking to be filtered according to the Date. I mean it should rank the values in AHT, if I filter the date to Jan-22 then it should give me ranking on the basis of date and not for overall dates.
| Ecode | Ename | AHT | Date |
| 45654 | A | 382 | Jan-22 |
| 45655 | B | 289 | Jan-22 |
| 45654 | A | 351 | Feb-22 |
Ashish_Mathur
4 years agoSuper User
Hi,
Download my PBI file from here. Let me know if this is working well.