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 Experts
I am trying to work out the time difference between the two times and dates .
See image of
129 second is 00:02:09 not 00:02:29 what the second meaure is giving me
First Measure
Time Taken in seconds = DATEDIFF(vw_fct_irs_time_taken[timestamp_created], vw_fct_irs_time_taken[timestamp_committed],SECOND)
Then convert that to HH:MM:SS - Calculated Column
HH:MM:SS =
RIGHT ( "0" & INT ( vw_fct_irs_time_taken[Time Taken in seconds] / 3600 ), 2 )
& ":"
& RIGHT (
"0"
& INT ( ( vw_fct_irs_time_taken[Time Taken in seconds] - INT (vw_fct_irs_time_taken[Time Taken in seconds] / 3600 ) * 3600 ) / 60 ),
2
)
& ":"
& RIGHT ( "0" & MOD (vw_fct_irs_time_taken[Time Taken in seconds], 3600 ), 2 )
Solved! Go to Solution.
@Anonymous Try this: Chelsie Eiden's Duration - Microsoft Power BI Community
@Anonymous Try this: Chelsie Eiden's Duration - Microsoft Power BI Community
User | Count |
---|---|
117 | |
75 | |
62 | |
50 | |
44 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |