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.
How can I filter the day and night per day to only show the latest data. I have tried filter by last min/hr but it does not work for my data.
The data that comes in from the source only includes personel that is present. The Date coming in because of it comes from the powerapp, each row is populated at different time, so i have rounded it to the nearest 5 minutes since one submittion takes less than 5 minutes.
Solved! Go to Solution.
Hi, @Anonymous
Add a measure like:
flag =
VAR _maxtime =
CALCULATE (
LASTNONBLANK ( 'Table'[DateTime], 1 ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Date] = MAX ( 'Table'[Date] )
&& 'Table'[Name] = MAX ( 'Table'[Name] )
)
)
RETURN
IF ( MAX ( 'Table'[DateTime] ) = _maxtime, 1, 0 )
Then apply this measure to the table filter pane:
Best Regards,
Community Support Team _ Eason
Hi, @Anonymous
Add a measure like:
flag =
VAR _maxtime =
CALCULATE (
LASTNONBLANK ( 'Table'[DateTime], 1 ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Date] = MAX ( 'Table'[Date] )
&& 'Table'[Name] = MAX ( 'Table'[Name] )
)
)
RETURN
IF ( MAX ( 'Table'[DateTime] ) = _maxtime, 1, 0 )
Then apply this measure to the table filter pane:
Best Regards,
Community Support Team _ Eason
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 |
---|---|
117 | |
85 | |
49 | |
38 | |
28 |
User | Count |
---|---|
189 | |
76 | |
73 | |
54 | |
42 |