Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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
Solved! Go to Solution.
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.
Column = HOUR(Table1[Column1])*60+MINUTE(Table1[Column1])
Note: You'll need to replace Table1[Column1] with your real table name and column name.
Regards
Thank you very much that really help