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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
LowIQ4Eva
Regular Visitor

Filter to last timestamp

Hi, I am looking for some help to filter to the last timestamp on any given day.

For example;

Tank 33 has two readings for 1/1/22:

  • 10 tonnes at 8am on 1/1/22
  • 5 tonnes at 9pm on 1/1/22

Is there a way to make a calculated column that looks at the entirety of another column and says

"am I the last time stamp on this day? if Yes, but a 1 in, if no put a zero in"

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@LowIQ4Eva , assume you have a timestamp column

 

Other wise create one with [Date]+[Time]

 

new column =

var _date = datevalue([timestamp])

var _max = maxx(filter(Table, _date = datevalue([timestamp]) ) ,[timestamp] )

return

if([timestamp] = _max, 1,0)

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

View solution in original post

2 REPLIES 2
LowIQ4Eva
Regular Visitor

This is great thanks amitchandak, really appreciate it.

amitchandak
Super User
Super User

@LowIQ4Eva , assume you have a timestamp column

 

Other wise create one with [Date]+[Time]

 

new column =

var _date = datevalue([timestamp])

var _max = maxx(filter(Table, _date = datevalue([timestamp]) ) ,[timestamp] )

return

if([timestamp] = _max, 1,0)

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors