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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

calcaute total hours

Hi,
 
im trying to calcuate total hours of the duration which is HH:MM:SS format in excel, i changedthe type to duration in power query applied following DAX, but couldnt get the result. please help I'm a beginner to PBI
 
Total Hrs = CALCULATE(SUMX(BWay_Data,BWay_Data[Time Duration of the call]),BWay_Data[Lead Status])
1 ACCEPTED SOLUTION

Hi @Anonymous ,

 

It is beacause that in Power Query Editor, there are two data types not currently present in Data or Report View: Date/Time/Timezone and Duration.

When a column with these data types is loaded into the model and viewed in Data or Report view, a column with a Date/Time/Timezone data type will be converted into a Date/Time, and a column with a Duration data type is converted into a Decimal Number, such as 0.00:00:00 (D.HH:MM:SS).

You'll likely need to write a measure to format exactly how you want.

Sample data: 0.18:01:00

Measure:

Measure = FORMAT(MAX('Table'[Column1]),"hh:nn:ss")

vxiaosunmsft_4-1669280029997.png

 

Or you can use the following formula to create a custom column in Power Query to return the total hours.

= Duration.TotalHours([Column1])

vxiaosunmsft_2-1669279851645.png

vxiaosunmsft_3-1669279876308.png

 

Best Regards,
Community Support Team _ xiaosun

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

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Pls find below

 

RazikM_1-1669015943136.png

RazikM_2-1669016021785.png

 

Hi @Anonymous ,

 

It is beacause that in Power Query Editor, there are two data types not currently present in Data or Report View: Date/Time/Timezone and Duration.

When a column with these data types is loaded into the model and viewed in Data or Report view, a column with a Date/Time/Timezone data type will be converted into a Date/Time, and a column with a Duration data type is converted into a Decimal Number, such as 0.00:00:00 (D.HH:MM:SS).

You'll likely need to write a measure to format exactly how you want.

Sample data: 0.18:01:00

Measure:

Measure = FORMAT(MAX('Table'[Column1]),"hh:nn:ss")

vxiaosunmsft_4-1669280029997.png

 

Or you can use the following formula to create a custom column in Power Query to return the total hours.

= Duration.TotalHours([Column1])

vxiaosunmsft_2-1669279851645.png

vxiaosunmsft_3-1669279876308.png

 

Best Regards,
Community Support Team _ xiaosun

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

FreemanZ
Super User
Super User

can you show the PQ-processed table?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors