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
KGBOR
Helper I
Helper I

Convert hh:mm:ss to mm:ss either in Power Query Editor or in DAX

I have a hh:mm:ss: value coming in from a raw data and I'd like to convert that to mm:ss as the time value itself is below 1 hour so the "hh" part brings no value. How can I convert or remove that "hh" part? I found that in Power Query editor I can get out the minutes and second separately and might be able to combine them but that'd just put way too burden on the entire model.

 

Thank you!

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

Hi @KGBOR ,

 

If the column is time type, you could try this formula:

 

Column = FORMAT('Table'[Column1],"nn:ss")

vjaywmsft_0-1653377635687.png

If the column is text type, you could try this formula:

Column = RIGHT('Table'[Column1],5)

vjaywmsft_1-1653377770976.png

 

Best Regards,

Jay

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

View solution in original post

4 REPLIES 4
v-jayw-msft
Community Support
Community Support

Hi @KGBOR ,

 

If the column is time type, you could try this formula:

 

Column = FORMAT('Table'[Column1],"nn:ss")

vjaywmsft_0-1653377635687.png

If the column is text type, you could try this formula:

Column = RIGHT('Table'[Column1],5)

vjaywmsft_1-1653377770976.png

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
mahoneypat
Employee
Employee

Please see this article. The best way to handle durations is to keep them as a decimal, do your aggregations, and then format them at the end with "mm:ss".

Calculate and Format Durations in DAX – Hoosier BI

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


amitchandak
Super User
Super User

@KGBOR , new column in power query

#time(0,Time.Minute([TimeCol]) , Time.Seconds([TimeCol]) )

Thank you @amitchandak ! For some reason it still kept the hh part at the beginning. Is there any method for such conversion?

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.