Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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!
Solved! Go to Solution.
Hi @KGBOR ,
If the column is time type, you could try this formula:
Column = FORMAT('Table'[Column1],"nn:ss")
If the column is text type, you could try this formula:
Column = RIGHT('Table'[Column1],5)
Best Regards,
Jay
Hi @KGBOR ,
If the column is time type, you could try this formula:
Column = FORMAT('Table'[Column1],"nn:ss")
If the column is text type, you could try this formula:
Column = RIGHT('Table'[Column1],5)
Best Regards,
Jay
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Thank you @amitchandak ! For some reason it still kept the hh part at the beginning. Is there any method for such conversion?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.