Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
79 | |
59 | |
36 | |
35 |
User | Count |
---|---|
99 | |
56 | |
56 | |
46 | |
40 |