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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Arpitpawar
New Member

Error in power query editor

I am working with one file that contains a column time that contains value for example like 2 hrs and 20 min so I want to convert into min like 140 min. 

 

So kindly help me by giving me the solution

2 ACCEPTED SOLUTIONS
dufoq3
Super User
Super User

Hi @Arpitpawar, I don't know how exactly is your column with that time or duration stored but you can do something like this:

 

Result

dufoq3_0-1709380996101.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMsooKlYwMsjNzFPSUTKyMjJQio0FAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t]),
    Ad_Col1ToMinutes = Table.AddColumn(Source, "Col1 to Minutes", each 
     [ l = List.Transform(Splitter.SplitTextByCharacterTransition({"0".."9"}, {"a".."z", "A".."Z"})([Column1]), (x)=> Number.From(Text.Select(x, {"0".."9"}))),
       m = l{0} * 60 + l{1}
     ][m], Int64.Type
),
    Ad_Col2ToMinutes = Table.AddColumn(Ad_Col1ToMinutes, "Col2 to Minutes", each 
     [ l = List.Transform(Text.Split([Column2], ":"), (x)=> Number.From(Text.Trim(x))),
       m = l{0} * 60 + l{1}
     ][m], Int64.Type)
in
    Ad_Col2ToMinutes

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

View solution in original post

Anonymous
Not applicable

Hi @Arpitpawar ,

Here is my sample data:

vjunyantmsft_0-1709515114369.png

The data type is Duration.
Please follow the screenshot below:

vjunyantmsft_1-1709515247444.png

The final output is as below:

vjunyantmsft_2-1709515272857.png


Best Regards,
Dino Tao
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

2 REPLIES 2
Anonymous
Not applicable

Hi @Arpitpawar ,

Here is my sample data:

vjunyantmsft_0-1709515114369.png

The data type is Duration.
Please follow the screenshot below:

vjunyantmsft_1-1709515247444.png

The final output is as below:

vjunyantmsft_2-1709515272857.png


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

dufoq3
Super User
Super User

Hi @Arpitpawar, I don't know how exactly is your column with that time or duration stored but you can do something like this:

 

Result

dufoq3_0-1709380996101.png

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMsooKlYwMsjNzFPSUTKyMjJQio0FAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t]),
    Ad_Col1ToMinutes = Table.AddColumn(Source, "Col1 to Minutes", each 
     [ l = List.Transform(Splitter.SplitTextByCharacterTransition({"0".."9"}, {"a".."z", "A".."Z"})([Column1]), (x)=> Number.From(Text.Select(x, {"0".."9"}))),
       m = l{0} * 60 + l{1}
     ][m], Int64.Type
),
    Ad_Col2ToMinutes = Table.AddColumn(Ad_Col1ToMinutes, "Col2 to Minutes", each 
     [ l = List.Transform(Text.Split([Column2], ":"), (x)=> Number.From(Text.Trim(x))),
       m = l{0} * 60 + l{1}
     ][m], Int64.Type)
in
    Ad_Col2ToMinutes

 


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.