Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
yairzafrany
Frequent Visitor

Convert time hour to minutes

 

 

Hello, I’m trying to find a way to convert time hour to minutes, so the data output is showing in minutes 

for Example, 01:10:00 (HH:MM: SS) should see 70

1 ACCEPTED SOLUTION

Thank you very much that really help  Smiley Happy

View solution in original post

2 REPLIES 2
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @yairzafrany,

 

Based on my test, you should be able to use the formula(DAX) below to create a new calculate column in your table to convert the time to minutes. Smiley Happy

Column = HOUR(Table1[Column1])*60+MINUTE(Table1[Column1])

Note: You'll need to replace Table1[Column1] with your real table name and column name.

 

c1.PNG

 

Regards

Thank you very much that really help  Smiley Happy

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.