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
Join us for an in-depth look at the new Power BI features and capabilities at the free Microsoft Business Applications Launch Event.
User | Count |
---|---|
437 | |
151 | |
109 | |
51 | |
50 |
User | Count |
---|---|
458 | |
141 | |
131 | |
80 | |
71 |