cancel
Showing results for 
Search instead for 
Did you mean: 
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

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

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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors