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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

Filter only latest row for unique ID

Hi all, 

 

I need to filter for latest date results  per given ID in this table e.g. for ID = 1283273, I would like to see only row with 11/22/2020 6:50:18PM date. 

 

12.PNG

 

I have tried 

MaxDate =
CALCULATE(MAX(tablename[OrderDateTime]),FILTER(tablename,tablename[ID]=EARLIER(tablename[tablename])))
and
IsLatest = If([Date]=[MaxDate],"Latest","Older")
 
but above solution only worked for cases when each row will be on different day, not few rows within the same date.
 
13.PNG
 
Any ideas how to tackle this?
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

Based on your description, you can create some calculated columns as follows.

MaxDate = CALCULATE(LASTNONBLANKVALUE('Fact'[OrderDateTime],MAX('Fact'[OrderDateTime])),ALLEXCEPT('Fact','Fact'[ID]))
Islatest = IF([OrderDateTime]=[MaxDate],"Latest","Older")

Result:

v-yuaj-msft_0-1613540893039.png

 

Hope that's what you were looking for.

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous ,

 

Based on your description, you can create some calculated columns as follows.

MaxDate = CALCULATE(LASTNONBLANKVALUE('Fact'[OrderDateTime],MAX('Fact'[OrderDateTime])),ALLEXCEPT('Fact','Fact'[ID]))
Islatest = IF([OrderDateTime]=[MaxDate],"Latest","Older")

Result:

v-yuaj-msft_0-1613540893039.png

 

Hope that's what you were looking for.

Best Regards,

Yuna

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@Anonymous , Create a measure like this and use it with ID

 

calculate(Max(Table[OrderDateTime]), filter(Table, Table[OrderDateTime] = calculate(min(Table[OrderDateTime]), allexcept(Table, Table[ID]))))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

this is brilliant thank you!!

Anonymous
Not applicable

Thanks @amitchandak , 

 

I have created this measure per you suggestion and dropped into my table with IDs, but it shows blank so does seem to be working as expected. Otherwise, please explain what you mean by "...use it with ID..."

14.PNG

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.