Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello,
I hope you can help as i am battling to find away to calculate the time difference beween 2 dumps over 2 shifts.
I will explain:
I need a calculation that takes the latest time of shift 1 "Dump_End_Timestamp" and the earliest time of shift 2 "Dump_End_Timestamp" to give me its difference in Minutes. Keeping in mind by selecting the dump location.
Is this possible?
Solved! Go to Solution.
Try this measure:
Minutes Diff =
VAR vLastDumpShift1 =
CALCULATE (
MAX ( ShiftData[DUMP_END_TIMESTAMP] ),
ShiftData[DUMP_END_SHIFT_IDENT] = 1
)
VAR vFirstDumpShift2 =
CALCULATE (
MIN ( ShiftData[DUMP_END_TIMESTAMP] ),
ShiftData[DUMP_END_SHIFT_IDENT] = 2
)
VAR vResult =
DATEDIFF ( vLastDumpShift1, vFirstDumpShift2, MINUTE )
RETURN
vResult
Proud to be a Super User!
Try this measure:
Minutes Diff =
VAR vLastDumpShift1 =
CALCULATE (
MAX ( ShiftData[DUMP_END_TIMESTAMP] ),
ShiftData[DUMP_END_SHIFT_IDENT] = 1
)
VAR vFirstDumpShift2 =
CALCULATE (
MIN ( ShiftData[DUMP_END_TIMESTAMP] ),
ShiftData[DUMP_END_SHIFT_IDENT] = 2
)
VAR vResult =
DATEDIFF ( vLastDumpShift1, vFirstDumpShift2, MINUTE )
RETURN
vResult
Proud to be a Super User!
Thank you.
This looks like it could be the answer. I however get this message:
Any idea how i should format the date to be able to do the calculation?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
75 | |
60 | |
37 | |
33 |
User | Count |
---|---|
102 | |
56 | |
52 | |
45 | |
40 |