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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Nitin03
Frequent Visitor

How to find difference between two dates in hours.

Hi
I am new to Dax. I want find difference between two dates in hours. I tried by using DATEDIFF function but it is excluding minutes
11.png
I want result like this
1.png
Is there another way to solve this probem. 
@amitchandak 

1 ACCEPTED SOLUTION

Hi,

You need to calc the Hour and Minutes separately, then add the particular text Hr and Min to the text one. 

use the below code for your measure :

DateDiffInHour = CONCATENATE(
                             CONCATENATE(
                                         DATEDIFF( values(Sheet244[In Time]), values(Sheet244[Out Time]),hour)
                                         , " hr ")
                             ,
                             CONCATENATE(  mod( DATEDIFF( values(Sheet244[In Time]), values(Sheet244[Out Time]), minute), 60)," min")
                            )
MahyarTF_0-1667343132240.png

 

Mahyartf

View solution in original post

3 REPLIES 3
Nitin03
Frequent Visitor

Hi @MahyarTF  I have already tried by using datediff I want ans like this :
1.png

Hi,

You need to calc the Hour and Minutes separately, then add the particular text Hr and Min to the text one. 

use the below code for your measure :

DateDiffInHour = CONCATENATE(
                             CONCATENATE(
                                         DATEDIFF( values(Sheet244[In Time]), values(Sheet244[Out Time]),hour)
                                         , " hr ")
                             ,
                             CONCATENATE(  mod( DATEDIFF( values(Sheet244[In Time]), values(Sheet244[Out Time]), minute), 60)," min")
                            )
MahyarTF_0-1667343132240.png

 

Mahyartf
MahyarTF
Memorable Member
Memorable Member

Hi 

did you use the Interval in your dax :

DateDiffInHour = DATEDIFF( values(Sheet244[In Time]), values(Sheet244[Out Time]),HOUR)

MahyarTF_0-1667291274571.png

Appreciate your Kudos and please mark my response as a solution if it helps you

Mahyartf

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

Check out the August 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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