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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors