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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-yuaj-msft
Community Support
Community Support

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
v-yuaj-msft
Community Support
Community Support

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]))))

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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