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 moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I have Dax Rankx and would like to convert into M query ( power Query), is it possible?
Ranking Measure=
var _end_date = 'Table1'[Start_Date2]
var _start_date = EOMONTH(_end_date,-24)+1
VAR _COUNT = RANKX (
FILTER (ALL('Table1'),
'Table1'[GP] = EARLIER('Table1'[GP])
&& 'Table1'[INDV_ID] = EARLIER('Table1'[INDV_ID])
&& 'Table1'[MALES_UNDER_35] = EARLIER('Table1'[MALES_UNDER_35])
&& 'Table1'[Start_Date2] >= _start_date
&& 'Table1'[Start_Date2] <= _end_date
),
'Table1'[Start_Date2],
,
ASC,
Dense
)
RETURN
_COUNT
Solved! Go to Solution.
@NilR , Refer nested index by Curbal -https://www.youtube.com/watch?v=7CqXdSEN2k4
Examine the recently added function: Table.AddRankColumn. Has a variety of arguments to handle ties.
Thank you! I am using corp version and it's not updated yet :'( Otherwise this is exactly what I needed!!
@NilR , Refer nested index by Curbal -https://www.youtube.com/watch?v=7CqXdSEN2k4
I ended up using this technic since nothing else is working but I also added below line to my sql:
DENSE_RANK() OVER (PARTITION BY GP, INDV_ID,MALES_Under_35 ORDER BY YRMO ASC ) AS Active_MOS
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 5 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 7 | |
| 5 | |
| 5 | |
| 5 | |
| 4 |