Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to 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")
Best Regards,
Dale
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
Best Regards,
Dale
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")
Best Regards,
Dale
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.
Best Regards,
Dale
Thank you dale
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
66 | |
59 | |
49 | |
36 | |
35 |
User | Count |
---|---|
84 | |
70 | |
58 | |
45 | |
44 |