Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon'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.
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:
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"
Solved! Go to Solution.
@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)
This is great thanks amitchandak, really appreciate it.
@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)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
122 | |
80 | |
47 | |
44 | |
35 |
User | Count |
---|---|
182 | |
83 | |
70 | |
47 | |
45 |