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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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))