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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
kamalmsharma
Helper II
Helper II

How to find last three dates

Hi friends,

 

I have a table for ranking position of runners for races on different dates. I want to create a table to get the ranking position of a runner for his last three races. For that, I need to first find out these three dates i.e. the last date, last but one date and last but two dates. Could you please advise how can I do that? 

3 REPLIES 3
Anonymous
Not applicable

hi @kamalmsharma

 

Please check out the link

 

https://community.powerbi.com/t5/Desktop/DAX-Ranking-or-Indexing-Dates/td-p/40776

 

This should give you the answer.

 

Using the same I created two calculated columns

 

1. YearMonth =  VALUE (        YEAR ( 'Table1'[Date] ) * 100 +          MONTH ( 'Table1'[Date] )   )

 

2.  RankbyDate =   RANKX (
                                            FILTER (
                                                                'Table1',
                                                                         EARLIER ( Table1[Name] ) = Table1[Name]
                                                           ),
                                          Table1[YearMonth],
                                            ,
                                             DESC,
                                              DENSE
                                            )

 

 

In the martix table,  set Rows as Name, Columns as RankbyDate,  Values as RaceDate, RaceRank.

Set the visual filter for RankByDate is less than 4.

 

Sample output

 

Capture1.JPG

 

 

If it works please accept it as solution and also give KUDOS.

 

Cheers

 

CheenuSing

 

 

Hi,

 

Thanks for your quick suggestion. Based on that I created 1st column as 'Month&year'. I created 2nd column for ranking using following function:

DateRank = RANKX(filter('Result', EARLIER('Result'[Runner])='Res'[Runner]), 'Result'[Month&year],0)

 

But it is giving same rank for all dates to each runner. Is it because the [Runner] is text column?

 

What can be a solution for this?

 

Regards,

Kamal

Anonymous
Not applicable

Hi @kamalmsharma

 

Please share your data model and data or the pbix in Google drive / One Drive and the paste the link here to check.

 

 

Cheers

 

CheenuSing 

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors