Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Is there a way to transform this Column that holds hours and minutes (stored is text in the Query) to time hours and minutes:
00:09
14:30
74:45
23:30
31:15
ertc...
Problems arise with the aggegated working hours on a machine that are above 24:00 hours. They will raise an error when you transform to time.
All help appreciated, Bert
Solved! Go to Solution.
You can only transfrom this text column into a "Duration" type column. Just add a custom column like below:
=#duration(0,Number.FromText(List.First(Text.Split([Time],":"))),Number.FromText(List.Last(Text.Split([Time],":"))),0)
Regards,
You can only transfrom this text column into a "Duration" type column. Just add a custom column like below:
=#duration(0,Number.FromText(List.First(Text.Split([Time],":"))),Number.FromText(List.Last(Text.Split([Time],":"))),0)
Regards,
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!