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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Im trying to convert these whole numbers to HH:MM formnat but get an error when trying to convert using the default in tools in Power Query .
Any help with being able to convert this ?
Solved! Go to Solution.
@dymetre973 , On way it use it duration
#duration(0,0,[column],0)
Another create manually
Number.ToText( Number.IntegerDivision([Column],60)) & ":" & Number.ToText( Number.Mod([Column],60))
@dymetre973 , On way it use it duration
#duration(0,0,[column],0)
Another create manually
Number.ToText( Number.IntegerDivision([Column],60)) & ":" & Number.ToText( Number.Mod([Column],60))