The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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