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

Don'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.

Reply
Anonymous
Not applicable

DateDiff is calculating the HOURS wrongly

Capture.PNG

 

 

I am trying to calculate the DATEDIFF in hours. But I am getting wrong values. Please see attached screenshot.

 

The first entry is same dates and the total time difference is 14 minutes. But I am getting 1 for the hour calculation. Why?

 

Is there any way to show the time difference between these two date time values like 00:14 and 2817:00?

 

Please help.

 

 

1 ACCEPTED SOLUTION
Nolock
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

it works correct but you expect something else that it actually does.

According to DATEDIFF func definition the return value is "The count of interval boundaries crossed between two dates."

Capture2.PNG

PowerBI doesn't have a duration data type, it means you have to calculate everything by yourself.
Create a diff of minutes and then divide it by 60 and you'll get your expected result.

Diff2 =
VAR DiffInMinutes =
    DATEDIFF ( Table1[Start]; Table1[End]; MINUTE )
VAR DiffInHours =
    QUOTIENT ( DiffInMinutes; 60 )
VAR ModuloDiffInMinutes =
    MOD ( DiffInMinutes; 60 )
VAR Result =
    FORMAT ( DiffInHours; "00" ) & ":"
        & FORMAT ( ModuloDiffInMinutes; "00" )
RETURN
    Result

 

View solution in original post

3 REPLIES 3
Nolock
Resident Rockstar
Resident Rockstar

Hi @Anonymous,

it works correct but you expect something else that it actually does.

According to DATEDIFF func definition the return value is "The count of interval boundaries crossed between two dates."

Capture2.PNG

PowerBI doesn't have a duration data type, it means you have to calculate everything by yourself.
Create a diff of minutes and then divide it by 60 and you'll get your expected result.

Diff2 =
VAR DiffInMinutes =
    DATEDIFF ( Table1[Start]; Table1[End]; MINUTE )
VAR DiffInHours =
    QUOTIENT ( DiffInMinutes; 60 )
VAR ModuloDiffInMinutes =
    MOD ( DiffInMinutes; 60 )
VAR Result =
    FORMAT ( DiffInHours; "00" ) & ":"
        & FORMAT ( ModuloDiffInMinutes; "00" )
RETURN
    Result

 

Anonymous
Not applicable

Thank you for your response and solution. Is it possible to exclude the weekends in the suggested calculation please.

 

Kindly let me know..

Hi @Anonymous,

 

yes, it is possible but please mark this ticket as a solution.
And then open a new one with your next question regarding excluding weekends. If you mention me in the new ticket, I will be notified and can help you immediately further.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.