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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

Reply
kvitnitskiy
Frequent Visitor

Convert text value to long time

Hello comunity.

 I have duration value  in sec(integer),  I use DAX to convert it to time 

Movement Time =
VAR Duration ='Summary table'[Duration(sec)]
VAR Hours =INT ( Duration / 3600)
VAR Minutes =INT ( MOD( Duration - ( Hours * 3600 ),3600 ) / 60)
VAR Seconds =ROUNDUP(MOD ( MOD( Duration - ( Hours * 3600 ),3600 ), 60 ),0)
VAR H =IF ( LEN ( Hours ) = 1,
CONCATENATE ( "0", Hours ),Hours)
VAR M =IF (LEN ( Minutes ) = 1,
CONCATENATE ( "0", Minutes ),Minutes)
VAR S =IF (LEN ( Seconds ) = 1,
CONCATENATE ( "0", Seconds ),Seconds)
RETURN
CONCATENATE (H,CONCATENATE ( ":", CONCATENATE ( M, CONCATENATE ( ":", S ) ) ))
kvitnitskiy_0-1673373993088.png

Then I try appy time format for this column and got error 

 

kvitnitskiy_2-1673374050901.png

So this perfectly works untill my time value less or equall  to 23:59:59.

question - how can I convert duration to time like hhh:nn:mm  and apply time format as well 

1 ACCEPTED SOLUTION
v-jianboli-msft
Community Support
Community Support

Hi @kvitnitskiy ,

 

Power BI doesn't support Duration data type for time over 24 hours.

vjianbolimsft_0-1673404918901.png

 

vjianbolimsft_1-1673404918403.png

 

If you need the time format, you can consider adding an extra column to save the part beyond 24h, or use the Date\Time format to convert the part beyond 24h to days

 

Best Regards,

Jianbo Li

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
ppm1
Solution Sage
Solution Sage

Please see this article for a better way to handle durations like this.

Calculate and Format Durations in DAX – Hoosier BI

Pat

Microsoft Employee
v-jianboli-msft
Community Support
Community Support

Hi @kvitnitskiy ,

 

Power BI doesn't support Duration data type for time over 24 hours.

vjianbolimsft_0-1673404918901.png

 

vjianbolimsft_1-1673404918403.png

 

If you need the time format, you can consider adding an extra column to save the part beyond 24h, or use the Date\Time format to convert the part beyond 24h to days

 

Best Regards,

Jianbo Li

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

amitchandak
Super User
Super User

@kvitnitskiy , You can have a number like

 

1*time(h,m,s) 

 

That will be a fraction of a day . you can multiply with 24 to get hours

 

24*60 to get minutes

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.