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

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
DataSophomore
New Member

Column with multiple times per day, filter to only show the latest time per day.

Hi all,

 

If I have a table called "EntryTimes"

 

Within the table there are columns for "StaffMember" and then also "EntryDateTime".

 

The "EntryDateTime" column will have multiple entries for a staff member on the same day eg:

01/01/24 07:00:00
01/01/24 08:00:00
01/01/24 09:12:00

I would like to only see the latest entry per day per staff member.

Is there a measure or some DAX I can use to filter out earlier entry times per day, per staff member so I am only left with the latest entry time per day, per staff member?

 

Thanks

2 REPLIES 2
DataSophomore
New Member

Is it a measure I need?

I have multiple times per date and I just need to see the latest time per date so one entry for every single date, not just the latest date?

 

I assumed it would be some DAX to create a new table?

Hopefully that makes sense.

amitchandak
Super User
Super User

@DataSophomore , refer the measure

 

Last Status = var _max = maxx(filter(ALLSELECTED(Data), Data[Staff ID] = Max(Data[Staff ID])), Data[Date])
return
CALCULATE(max(Data[Status]), filter((Data) , Data[Date] =_max))

 

Refer blog
https://amitchandak.medium.com/power-bi-get-the-last-latest-value-of-a-category-d0cf2fcf92d0

https://amitchandak.medium.com/power-bi-get-the-sum-of-the-last-latest-value-of-a-category-f1c839ee8...

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

Helpful resources

Announcements
December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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.