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.
Hello,
I created a summarized table and am trying to convert an average time value (Average Hour Time in this case) to a time format (HH:MM:SS). See Screenshot:
So 12.11 for Medicine Emory A should convert to roughly 12:07.
Any help will be greatly appreciated.
Solved! Go to Solution.
Hi @ranis1227 ,
You can try this method:
New a measure:
Average_Time =
var _hours = ROUNDDOWN(SUM('Table'[Average Hour Time]), 0)
var _minutes = (SUM('Table'[Average Hour Time]) - _hours) * 60
var _seconds = (_minutes - ROUNDDOWN(_minutes, 0)) * 60
return
TIME(_hours, _minutes, _seconds)
Need to change the type here:
The result is:
Hope this helps you. Here is my PBIX file.
Best Regards,
Community Support Team _Yinliw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @ranis1227 ,
You can try this method:
New a measure:
Average_Time =
var _hours = ROUNDDOWN(SUM('Table'[Average Hour Time]), 0)
var _minutes = (SUM('Table'[Average Hour Time]) - _hours) * 60
var _seconds = (_minutes - ROUNDDOWN(_minutes, 0)) * 60
return
TIME(_hours, _minutes, _seconds)
Need to change the type here:
The result is:
Hope this helps you. Here is my PBIX file.
Best Regards,
Community Support Team _Yinliw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @ranis1227
Check out the below links and you will find how to convert your number to time:
https://community.powerbi.com/t5/Desktop/Convert-Decimal-Duration-in-HH-MM-SS-format/m-p/959061
https://community.powerbi.com/t5/Power-Query/How-to-convert-decimal-time-to-hh-mm-and-summarize-that...
https://www.myonlinetraininghub.com/converting-decimal-time-to-days-hours-minutes-in-power-bi
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
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 |
---|---|
10 | |
9 | |
8 | |
7 | |
6 |
User | Count |
---|---|
14 | |
13 | |
11 | |
9 | |
8 |