Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
I have a field in Power BI which gives me the minutes number.
Example :- 14
I need to convert it to the format HH:MM. Please help
Examples
-- 14 need to be changed as 00:14
-- 62 need to be changed as 01:02
-- 70 need to be changed as 01:10
Solved! Go to Solution.
HI @Anonymous
you can create a column with below code:-
In Hours and Minutes =
var _Minues='Convert HHM'[Column1]
var _Hours=int( _Minues/60)
var _RemMinutes=MOD(_Minues, 60)
return
_Hours&":"&IF(_RemMinutes< 10,"0"&_RemMinutes,_RemMinutes)
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
HI @Anonymous
you can create a column with below code:-
In Hours and Minutes =
var _Minues='Convert HHM'[Column1]
var _Hours=int( _Minues/60)
var _RemMinutes=MOD(_Minues, 60)
return
_Hours&":"&IF(_RemMinutes< 10,"0"&_RemMinutes,_RemMinutes)
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi,
Unsure what I have done incorrectly, it does not pick up the column name "Loading TAT(mins)"
This solution worked perfectly for me when I found it for my project. My only outstanding problem is blank values showing up with : and not zeros. Another option would be to exclude those with zero but I am not able to filter due to the colon. Any ideas?
Hi
I have a field in Power BI which gives me the minutes number.
Example :- 186
I need to convert it to the format HH:MM. Please help
The above dax does not work
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 49 | |
| 30 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 131 | |
| 103 | |
| 58 | |
| 39 | |
| 31 |