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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors