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
Kenny_McMillan
Regular Visitor

Convert seconds column into duration column hh:mm:ss.ss (needs hundredths of a second in output)

 

I am trying to convert a column that contains a time in seconds into a duration that includes hundreds of a second

 

eg

Convert 242.5 secs into  00:04:02.05

 

Regards

1 ACCEPTED SOLUTION

Hi @Kenny_McMillan,

 

Try out this formula please.

Column 2 = 
VAR hours =
    ROUNDDOWN ( [Column1] / 3600, 0 )
VAR minutes =
    ROUNDDOWN ( MOD ( [Column1], 3600 ) / 60, 0 )
VAR seconds =
    INT ( MOD ( [Column1], 60 ) )
VAR milliseconds =
    round(MOD ( [Column1], 1 ) * 100,0)
RETURN
    FORMAT(hours,"00") & ":"
        & FORMAT(minutes, "00")
        & ":"
        & FORMAT(seconds, "00")
        & "."
        & FORMAT(milliseconds, "00")

dd

 

Best Regards,

Dale

Community Support Team _ Dale
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

6 REPLIES 6
v-jiascu-msft
Microsoft
Microsoft

Hi @Kenny_McMillan,

 

Seems there isn't a built-in support of such format. Please vote up this idea here. The workaround could be as below.

Column 2 =
VAR hours =
    ROUNDDOWN ( [Column1] / 3600, 0 )
VAR minutes =
    ROUNDDOWN ( MOD ( [Column1], 3600 ) / 60, 0 )
VAR seconds =
    INT ( MOD ( [Column1], 60 ) )
VAR milliseconds =
    ROUND ( MOD ( [Column1], 1 ) * 100, 0 )
RETURN
    hours & ":"
        & minutes
        & ":"
        & seconds
        & "."
        & milliseconds

miniseconds

 

Best Regards,

Dale

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

Thanks Dale for the help, 

 

How would you force each number to be of two digits length ?  4 minutes 2.17 secs would be 00:04:02.17

 

Regards

Hi @Kenny_McMillan,

 

Try out this formula please.

Column 2 = 
VAR hours =
    ROUNDDOWN ( [Column1] / 3600, 0 )
VAR minutes =
    ROUNDDOWN ( MOD ( [Column1], 3600 ) / 60, 0 )
VAR seconds =
    INT ( MOD ( [Column1], 60 ) )
VAR milliseconds =
    round(MOD ( [Column1], 1 ) * 100,0)
RETURN
    FORMAT(hours,"00") & ":"
        & FORMAT(minutes, "00")
        & ":"
        & FORMAT(seconds, "00")
        & "."
        & FORMAT(milliseconds, "00")

dd

 

Best Regards,

Dale

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

Thank you so much Dale this is great.  I assume there is no way that this can be forced into a Duration format though ?

Hi @Kenny_McMillan,

 

There is a Duration type for the Power Query while there isn't a Duration type for DAX. That's why I suggested you vote up the idea.

Convert_seconds_column_into_duration_column

 

Best Regards,

Dale

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

Thank you dale

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
Top Kudoed Authors