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
FloBar
New Member

Not possible to convert a cell in a duration

Hello, 

 

I am currently blocked with this Data type conversion I should have the reading 39:38:58. I am always missing 24 hours

 

Right after the import, I have this. 

FloBar_0-1712004076566.png

I try to change it to time but I the first 24 hours aren't there

FloBar_1-1712004110321.png

Could you please help me

 

Thanks 

 

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

Hi @FloBar

 

@Zang_Mi Thank you very much for your prompt reply.

 

For your question, I would recommend creating a column to make changes to the date.

 

Here's some dummy data

 

“Table”

vnuocmsft_0-1712641013471.png

 

create a column.

 

 

Duration = 
VAR _time = HOUR([Temps en operation (h:mm:ss)]) + 24 & ":" & MINUTE([Temps en operation (h:mm:ss)]) & ":" & SECOND([Temps en operation (h:mm:ss)])
RETURN _time

 

 

Here is the result.

 

vnuocmsft_1-1712641048745.png

 

If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.

 

Regards,

Nono Chen

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
v-nuoc-msft
Community Support
Community Support

Hi @FloBar

 

@Zang_Mi Thank you very much for your prompt reply.

 

For your question, I would recommend creating a column to make changes to the date.

 

Here's some dummy data

 

“Table”

vnuocmsft_0-1712641013471.png

 

create a column.

 

 

Duration = 
VAR _time = HOUR([Temps en operation (h:mm:ss)]) + 24 & ":" & MINUTE([Temps en operation (h:mm:ss)]) & ":" & SECOND([Temps en operation (h:mm:ss)])
RETURN _time

 

 

Here is the result.

 

vnuocmsft_1-1712641048745.png

 

If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.

 

Regards,

Nono Chen

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

FloBar
New Member

hello,

I still have the issue, this is not working

Thanks for your help

Zang_Mi
Resolver II
Resolver II

Hello, if the duration can be over 24 hours, then you need to transform the text to the format d.hh:mm:ss before converting it to duration data type.

For example: from 39:38:58 to 1.15:38:58

Zang_Mi_1-1712007685181.png


M Query with the example and steps to apply:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMra0MrawMrVQitWJVjI0tTIwsjIxVYqNBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Duration = _t]),
    #"Added Custom" = Table.AddColumn(Source, "Duration Format", each let
hours_to_days = Number.FromText(Text.BeforeDelimiter([Duration], ":"))/24,

days = Number.RoundDown(hours_to_days),

hours = (hours_to_days-days)*24,

minutes_and_seconds = Text.AfterDelimiter([Duration], ":"),

duration_text = 
Number.ToText(days) & "." & 
Number.ToText(hours) & ":" &
minutes_and_seconds

in duration_text),
    #"Changed Type" = Table.TransformColumnTypes(#"Added Custom",{{"Duration Format", type duration}})
in
    #"Changed Type"

 

 If this answer helps you, please give a kudo and mark it as solution ‌‌🙂.

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.