Forum Discussion
Ranking
Hi guys,
I've been trying different ways to create a ranking, but without success
I would like to create an index measure by city and project, sorted by date.
Someone could help me ?
This is the result I would like to get
Hi kasife ,
Based on the linked pbix, you used the latest release date by project to get the index but the dates on your screenshot do not match with your pbix.
That aside, if you want to use the latest date, create a calculated column for that first and then use that calculated column in RANKX.
Latest Release Date by Project = CALCULATE ( MAX ( Tabela[Realese Date] ), ALLEXCEPT ( Tabela, Tabela[Project] ) )Index = RANKX ( FILTER ( Tabela, Tabela[City] = EARLIER ( Tabela[City] ) ), Tabela[Latest Release Date by Project], , ASC, DENSE )
4 Replies
- danextianSuper User
Hi kasife ,
Based on the linked pbix, you used the latest release date by project to get the index but the dates on your screenshot do not match with your pbix.
That aside, if you want to use the latest date, create a calculated column for that first and then use that calculated column in RANKX.
Latest Release Date by Project = CALCULATE ( MAX ( Tabela[Realese Date] ), ALLEXCEPT ( Tabela, Tabela[Project] ) )Index = RANKX ( FILTER ( Tabela, Tabela[City] = EARLIER ( Tabela[City] ) ), Tabela[Latest Release Date by Project], , ASC, DENSE )