Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi
I want to create a rank by highest value, for example if I have this table:
| Routes: | Total Pax No.: |
| RUH | 10,000 |
| JED | 6,000 |
| RUH | 15,000 |
| ABH | 9,000 |
| JED | 7,000 |
I want to create a rank by routes pax no (highest to lowest), like this example:
| Routes: | Total Pax No.: | Rank: |
| RUH | 10,000 | 1 |
| JED | 6,000 | 2 |
| RUH | 15,000 | 1 |
| ABH | 9,000 | 3 |
| JED | 7,000 | 2 |
which shows RUH is 1 as have the highest value, JED is 2 and the lowest is ABH as 3.
Solved! Go to Solution.
Hello @RexaZii93 ,
Try creating below calculated column-
Rank =
RANKX (
'Table',
CALCULATE (
SUM ( 'Table'[Total Pax No.] ),
FILTER ( 'Table', 'Table'[Routes] = EARLIER ( 'Table'[Routes] ) )
),
,
DESC,
DENSE
)
Please mark it as solution if it solves your issue. Kudos are also appreciated.
Hello @RexaZii93 ,
Try creating below calculated column-
Rank =
RANKX (
'Table',
CALCULATE (
SUM ( 'Table'[Total Pax No.] ),
FILTER ( 'Table', 'Table'[Routes] = EARLIER ( 'Table'[Routes] ) )
),
,
DESC,
DENSE
)
Please mark it as solution if it solves your issue. Kudos are also appreciated.
Thanks, it worked! but I have a column which filter internations and domestic routs and another one which filters departure and arrival, when I apply it show the rank of international for example it miss up the rank and goes 7 10 30 etc.
can I make the rank dynamicly to when I apply filters.
Thanks
In that case, you need to go for Measure in place of calculated column.
Create measure -
TotalPaxMeasure = Sum('Table'[Total Pax No.])
Create one more measure after creating above one and then use it for ranking.
RankMeasure =
CALCULATE (
RANKX ( ALLSELECTED ( 'Table'[Routes] ), [TotalPaxMeasure],, DESC, DENSE )
)
Please mark it as answer if it resolves your issue. kudos are also appreciated.
Thanks I added the 2 measures but how does work? do I just add the pax no. and the rank measures to the filtering option?
Just use rank measure as visual level filter and set to equal to 1.
Thanks I tested to a list visual and it worked I can just change the number to any rank and it shows the data I want, but when I use a card visual and applied the measure it grays out do you know why is that and how to fix it?
Hi @RexaZii93
You can use this dax formula to create a new calculated column
Rank =
RANKX (
Table2,
CALCULATE (
SUM ( Table2[Total Pax No] ),
ALLEXCEPT (
Table2,
Table2[Routes]
)
),
,
DESC,
DENSE
)
This is the output of teh calculated column
If this post helps, Accept it as a solution.
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 |
|---|---|
| 44 | |
| 43 | |
| 38 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |