Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Sonyat810
Helper I
Helper I

Calcutate timestamp

I'm trying to calculate the difference between timestamp. My code isn't working.

3 REPLIES 3
v-rzhou-msft
Community Support
Community Support

Hi @Sonyat810 ,

 

Due to I don't know your data model, here I will create a sample to have a test.

vrzhoumsft_0-1687332392399.png

Measure:

Diff between Timestamp =
VAR _DIFFSECOND =
    DATEDIFF ( MAX ( 'Table'[Start] ), MAX ( 'Table'[End] ), SECOND )
VAR _HOUR =
    FORMAT ( QUOTIENT ( _DIFFSECOND, 60 * 60 ), "00" )
VAR _MINUTE =
    FORMAT ( QUOTIENT ( _DIFFSECOND - _HOUR * 60 * 60, 60 ), "00" )
VAR _SECOND =
    FORMAT ( _DIFFSECOND - _HOUR * 60 * 60 - _MINUTE * 60, "00" )
RETURN
    COMBINEVALUES ( ":", _HOUR, _MINUTE, _SECOND )

Result is as below.

vrzhoumsft_1-1687332547477.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Sonyat810_0-1687349743533.png

 

How do I attach my .pbix file?

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.