Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
User | Count |
---|---|
78 | |
74 | |
42 | |
32 | |
28 |
User | Count |
---|---|
100 | |
93 | |
51 | |
50 | |
48 |