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
Qotsa
Helper V
Helper V

Duration as Text - Convert to Hours & Minutes

Hi,

 

I have a column NoofHours stored as text format. 01:30:00 is 1 hr 30 minutes. How do i convert to 90 minutes.

If I use Calc column

= MINUTE(StdWeekDay[NoofHours]) I get 30. It leaves out the 1 hr.
 
Storage Mode is Direct Query.
1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Qotsa - You could do 

= MINUTE(StdWeekDay[NoofHours]) + (HOUR(StdWeekDay[NoofHours]) * 60)

Cheers!

Nathan

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Qotsa 
One option is 

NoofHours in minutes = 
var hours = MID(Table1[NoofHours],1,2)
var minutes = MID(Table1[NoofHours],4,2)

return hours*60 + minutes

2019-04-10 08_50_59-papercut - Remote Desktop Connection.png

 

minute function returns values between 0 and 59 only.

 

Good luck!

parry2k
Super User
Super User

@Qotsa you can also take advantage of duration function in Power Query.

 

Goto query editor and add new custom column with following formula

 

Duration.TotalMinutes(Duration.FromText([NoofHours]))


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

@Qotsa - You could do 

= MINUTE(StdWeekDay[NoofHours]) + (HOUR(StdWeekDay[NoofHours]) * 60)

Cheers!

Nathan

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.

Top Solution Authors