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.
Hi,
In Power BI I have a column name has Worked minutes as 110 minutes.
This 110 minutes I have to convert into hours as "1:50"
How to convert the 110 as 1:50
Thanks in advance,
Pooja-B.
Solved! Go to Solution.
@Pooja-B ,
Are you using the same formula? I got the correct output.
Please see the below,
Thanks,
Arul
Hi @Arul ,
I need that hours coulumn datatype as decimal numbers because I need to add the sum of worked hours.
I already have workedMinutes column have data as 110 "Whole number datatype".
The hours column I need 1:50 as decimal number datatype.
In above mentioned thread they were in text datatype.
Thanks,
Pooja-B
@Pooja-B ,
If you requirement is to calculate the sum of hours, Can you try the below formula in measure?
Minutes to Hours =
VAR _hours = ROUNDDOWN(DIVIDE(SUM('Table'[Minutes]),60),0)
VAR _minutes = MOD(SUM('Table'[Minutes]),60)
VAR _result = FORMAT(_hours,"#00")&":"&FORMAT(_minutes,"#00")
RETURN _result
Thanks,
Arul;
Hi @Arul ,
Thank you so much for your response. Its working fine.
But I need some exact answer sir.
I have 2 times here,
Minutes Hours
220 3:40
225 3:45
Total Hours worked = 7:25
The above your given code, I tried in "calculated measure" its working in table visual but not working in the stacked column chart visual
Thanks,
Pooja-B
@Arul ,
Here I need the total as 7:25 here showing 8:00
I added Tooltip as "Minutes to Hours" but its blank here
Thanks,
Pooja-B.
Great Thanks
It's working for me of similar case
@Pooja-B ,
refer this thread, if this does not helps please let me know.
https://community.powerbi.com/t5/Desktop/Convert-number-of-minutes-to-hours/m-p/2168710
Thanks,
Arul
User | Count |
---|---|
75 | |
74 | |
44 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |