Hello,
I have data that looks something like this:
Date | Job Name | End Time |
|
1/1/2022 | Job A | 4:45pm | |
1/1/2022 | Job B | 5:35pm |
|
1/1/2022 | Job C | 3:30pm |
|
1/2/2022 | Job D | 4:30pm |
|
1/2/2022 | Job E | 6:00pm |
|
1/2/2022 | Job F | 8:00pm |
|
I am looking for a dax expression that can calculate the latest end time for the given day. I would like the data to look like this:
Date | Job Name | End Time | Latest Time of the Day |
1/1/2022 | Job A | 4:45pm | 5:35pm |
1/1/2022 | Job B | 5:35pm | 5:35pm |
1/1/2022 | Job C | 3:30pm | 5:35pm |
1/2/2022 | Job D | 4:30pm | 8:00pm |
1/2/2022 | Job E | 6:00pm | 8:00pm |
1/2/2022 | Job F | 8:00pm | 8:00pm |
Does anyone know a dax expression that could do this? Thanks.
Solved! Go to Solution.
Hi @jacklamlan ,
Please refer to my pbix file to see if it helps you.
Create a measure.
Measure =
CALCULATE (
MAX ( 'Table'[End time] ),
FILTER (
ALL ( 'Table' ),
'Table'[Date] = SELECTEDVALUE ( 'Table'[Date] )
&& 'Table'[Job] = SELECTEDVALUE ( 'Table'[Job] )
)
)
Or a column.
Column =
CALCULATE (
MAX ( 'Table'[End time] ),
FILTER (
( 'Table' ),
'Table'[Date] = EARLIER ( 'Table'[Date] )
&& 'Table'[Job] = EARLIER ( 'Table'[Job] )
)
)
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @jacklamlan ,
Please refer to my pbix file to see if it helps you.
Create a measure.
Measure =
CALCULATE (
MAX ( 'Table'[End time] ),
FILTER (
ALL ( 'Table' ),
'Table'[Date] = SELECTEDVALUE ( 'Table'[Date] )
&& 'Table'[Job] = SELECTEDVALUE ( 'Table'[Job] )
)
)
Or a column.
Column =
CALCULATE (
MAX ( 'Table'[End time] ),
FILTER (
( 'Table' ),
'Table'[Date] = EARLIER ( 'Table'[Date] )
&& 'Table'[Job] = EARLIER ( 'Table'[Job] )
)
)
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
224 | |
57 | |
49 | |
48 | |
46 |
User | Count |
---|---|
278 | |
211 | |
113 | |
83 | |
73 |