Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
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
Solved! Go to Solution.
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
)
Hi @kasife ,
Try this as a calculated column
rank =
RANKX (
FILTER ( 'DataTable', 'DataTable'[city] = EARLIER ( 'DataTable'[city] ) ),
'DataTable'[Date],
,
ASC,
DENSE
)
@danextian
The ranking is still not giving the result I would like.
Below I put what it is returning me and 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
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 34 | |
| 33 | |
| 30 |