cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
MarLinCH
Regular Visitor

Formatting Text to Duration

Hi everyone, 

 

First time here, so I'm excited to get help - thank you very much. 

MarLinCH_0-1696256350295.png

I receive a weekly update with data, including the time for certain calls. "Non ACD Calls in Time" and "Logged On Time (Per Skill Group)" are being seen as "Text," while "Non ACD Calls Out Time" is being seen as "Time." I would like to format all columns as "Time" to see how many hours, minutes, and seconds people spend on the phone. 

 

In the raw data set, everything is formatted as the same: 

MarLinCH_1-1696256587227.png

Thank you very much for your help!

Cheers

Markus

1 ACCEPTED SOLUTION

Thank you very much - I've also found sth. that worked: 

let
    DurationFromYourText = (text as text) as duration => let
        Split = Text.Split(text, ":"),
        AsNumbers = List.Transform(Split, Number.FromText),
        Duration = #duration(0, AsNumbers{0}, AsNumbers{1}, AsNumbers{2})
    in
        Duration,
    Invoked = DurationFromYourText([#"Logged On Time (Per Skill Group)"])
in
    Invoked

View solution in original post

5 REPLIES 5
mlsx4
Super User
Super User

Hi @MarLinCH 

 

Have you tried to change data type from here? You select the column and change to duration

mlsx4_0-1696257629260.png

 

Yes, if I change it to "Duration", it will show "Error":

MarLinCH_0-1696337165635.png

 

Hi @MarLinCH 

Ok, I think the problem is because you have duration over 24 hours. Try to apply this solution: https://community.fabric.microsoft.com/t5/Desktop/Duration-Error-over-24-00-00/td-p/1204481

Thank you very much - I've also found sth. that worked: 

let
    DurationFromYourText = (text as text) as duration => let
        Split = Text.Split(text, ":"),
        AsNumbers = List.Transform(Split, Number.FromText),
        Duration = #duration(0, AsNumbers{0}, AsNumbers{1}, AsNumbers{2})
    in
        Duration,
    Invoked = DurationFromYourText([#"Logged On Time (Per Skill Group)"])
in
    Invoked

@MarLinCH 

That's nice!! Please, mark the topic as solved for other users who may have the same problem

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors