Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
NilR
Post Patron
Post Patron

Ranking in Power Query

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

 

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@NilR , Refer nested index by Curbal -https://www.youtube.com/watch?v=7CqXdSEN2k4

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

4 REPLIES 4
ronrsnfld
Super User
Super User

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!! 

amitchandak
Super User
Super User

@NilR , Refer nested index by Curbal -https://www.youtube.com/watch?v=7CqXdSEN2k4

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors