March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I need help from you guys for calculating the difference between two time stamps , below is as example of the
exact output that I need. Appreciate your help !
ID | Time Received | Action | Expected Time Difference O/P |
121 | 10/9/2017 6:00 | In | |
121 | 10/9/2017 6:30 | Out | 30 |
121 | 10/9/2017 6:50 | In | |
121 | 10/9/2017 7:00 | Out | 10 |
121 | 10/9/2017 7:10 | In | |
121 | 10/9/2017 7:30 | Out | 20 |
121 | 10/9/2017 7:32 | In | |
121 | 10/9/2017 7:43 | Out | 11 |
121 | 10/9/2017 7:47 | In | |
121 | 10/9/2017 7:50 | Out | 3 |
Thanks,
Solved! Go to Solution.
Hi @Anonymous,
glad it worked out for you. For formatting the result, you may find these additional measures useful:
DiffMinutes = QUOTIENT([Diff], 60) DiffSeconds = [Diff] - [DiffMinutes] * 60 DiffMinSec = [DiffMinutes] & "." & FORMAT([DiffSeconds],"00")
If all you need is the [DiffMinSec] you can fold it together as:
DiffMinSec = QUOTIENT([Diff], 60) & "." & FORMAT([Diff] - QUOTIENT([Diff], 60) * 60,"00")
Hello,
@Zubair_Muhammad very elegant solution.
I took a longer path to the solution. Here is my take on this.
EVALUATE SELECTCOLUMNS ( ADDCOLUMNS ( ADDCOLUMNS ( Table1, "PreviousRow", CALCULATETABLE ( VALUES ( Table1[Time Received] ), FILTER ( ALL ( Table1 ), Table1[Index] = EARLIER ( Table1[Index1] ) ) ) ), "Subtract", MINUTE ( ( Table1[Time Received] - [PreviousRow] ) ) ), "Time Received", Table1[Time Received], "Action", Table1[Action], "Minutes Out", IF ( Table1[Action] = "Out", [Subtract], 0 ) )
Hi @Anonymous,
Try this calculated column formula
=if(Data[Action]="Out",[Time Received]-CALCULATE(MAX(Data[Time Received]),FILTER(Data,Data[ID]=EARLIER(Data[ID])&&Data[Time Received]<EARLIER(Data[Time Received]))),BLANK())
Hope this helps.
I tried using the formula, but it gives a difference in Date's
col = if('Events (3)'[list.list.assetState.name]="isNoMotion",'Events (3)'[Timestamp]-CALCULATE(MAX('Events (3)'[Timestamp]),FILTER('Events (3)','Events (3)'[Timestamp]<EARLIER('Events (3)'[Timestamp]))),BLANK())
Hi,
Format that column as a Time entry.
Hi @Anonymous
Add this calculated Column
= VAR Previoustime = MAXX ( FILTER ( Table1, Table1[Time Received] < EARLIER ( Table1[Time Received] ) ), Table1[Time Received] ) RETURN IF ( Table1[Action] = "Out", DATEDIFF ( Previoustime, Table1[Time Received], MINUTE ) )
Good solution from @Zubair_Muhammad. You may want to check the Action in the filter condition in case times can overlap. Like this:
= VAR Previoustime = MAXX ( FILTER ( Table1, Table1[Time Received] < EARLIER ( Table1[Time Received] ) &&
Table1[Action] = "In"), Table1[Time Received] ) RETURN IF ( Table1[Action] = "Out", DATEDIFF ( Previoustime, Table1[Time Received], MINUTE ) )
You can also define the same as a measure. It would need to be executed in a filter context where Table1[Time Received] has only one value. It would go something like this:
Diff = DATEDIFF(Calculate(MAX(Table1[Time Received]),
FILTER(ALL(Table1),
Table1[Action] = "In" &&
Table1[Time Received] <= MAX('Time'[Time Received]))),
MAX('Time'[Time Received]),
MINUTE)
@erik_tarnvik @Zubair_Muhammad
Here is the actual data, I tried to Include the Column and Measure, But I I am not getting the desired result.
Am I doing anything wrong here
Diff = DATEDIFF(Calculate(MAX('Events (3)'[Timestamp]),
FILTER(ALL('Events (3)'),
'Events (3)'[list.list.assetState.name] = "isNoMotion" &&
'Events (3)'[Timestamp] <= MAX('Events (3)'[Timestamp]))),
MAX('Events (3)'[Timestamp]),
MINUTE)
Column =
VAR Previoustime =
MAXX (
FILTER ( 'Events (3)', 'Events (3)'[Timestamp] < EARLIER ( 'Events (3)'[Timestamp] ) &&
'Events (3)'[list.list.assetState.name] = "isNoMotion"),
'Events (3)'[Timestamp]
)
RETURN
IF (
'Events (3)'[list.list.assetState.name] = " isMotion",
DATEDIFF ( Previoustime, 'Events (3)'[Timestamp], MINUTE )
)
Hi @Anonymous, I am not sure what is going wrong and I agree with @Zubair_Muhammad that at this point, you probably need to share your model. I replicated your data exactly and got the following result using my Diff measure:
Since the DATEDIFF function uses MINUTE as the resolution, most of the results are zero minutes, but the first two lines in your data should give a Diff of 8, which it also does in my testing. I can't see anything obviously wrong in your replaication of the Diff measure.
Just to verify, I changed the resolution to SECOND, which gave an output that also seems correct. Well, except for the total but that's a whole different story...
Need one more help from you, the Diff measure is giving me the time difference perfectly but is it possible to get the total also. I also need to show the total time difference. Can you help me with this.
Thanks,
I am looking for the Exact result that you have shown, But When I tried it for Seconds for some reason I am not getting accurate results(as you can see seconds are not correct).Here is the exact data used given in the Image, I am unable to upload files in here:(
Timestamp | list.list.assetState.name |
9/27/2017 10:11 | isMotion |
9/27/2017 10:12 | isNoMotion |
9/27/2017 10:15 | isMotion |
9/27/2017 10:16 | isNoMotion |
9/27/2017 10:19 | isMotion |
9/27/2017 10:24 | isNoMotion |
9/27/2017 10:24 | isMotion |
9/27/2017 10:31 | isNoMotion |
9/27/2017 10:31 | isMotion |
9/27/2017 10:38 | isNoMotion |
9/27/2017 10:39 | isMotion |
9/27/2017 10:42 | isNoMotion |
9/27/2017 10:42 | isMotion |
9/27/2017 10:44 | isNoMotion |
9/27/2017 10:44 | isMotion |
Try changing the line
FILTER(ALL('Events (3)'),
to
FILTER(ALLSELECTED('Events (3)'),
in your measure. What happens here is that the ALL() clears all filters on your event table no matter where they are coming from. ALLSELECTED however will clear the filters in your table but not the one in the slicer I see you have on the events table. So you most likely are getting the wrong result beacuse the measure will "see" ALL events in the table, not just the ones you have selected with the slicer.
Let me know if this solves the problem.
Thanks, I am getting the result now. But there is just one more thing, Is it Possible to get the exact time difference with Minutes and seconds(m.s) for eg. 4.50 where 4 is minute and 50 is seconds both of which is derived from the difference in date times.
Thanks,
Ravi Shankar D
Hi @Anonymous,
glad it worked out for you. For formatting the result, you may find these additional measures useful:
DiffMinutes = QUOTIENT([Diff], 60) DiffSeconds = [Diff] - [DiffMinutes] * 60 DiffMinSec = [DiffMinutes] & "." & FORMAT([DiffSeconds],"00")
If all you need is the [DiffMinSec] you can fold it together as:
DiffMinSec = QUOTIENT([Diff], 60) & "." & FORMAT([Diff] - QUOTIENT([Diff], 60) * 60,"00")
Thanks a lot @erik_tarnvik and everyone who helped in forming this calculation.
I will check and let you know if I find any bugs @erik_tarnvik
Hi @Anonymous
Could you share the file?
I noticed a small space in the code " isMotion" (3rd last line of the column code)
Should be "isMotion"
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |