Forum Discussion
Anonymous
4 years agoNot applicable
24:00:00 Records Changing Type to Duration
Hi guys, how is everything? I’ve a power query table with many columns that got type of “any” at the beginning, many of these columns got records of 24:00:00, when I change the type of the mentio...
Anonymous
4 years agoNot applicable
Have you tried just splitting on the ":", and name them "Hours", "Minutes", "Seconds", make them type number, and then making a custom column, like
Table.AddColumn(StepNameAfterSplitting,"Duration", each #duration(0, [Hours], [Minutes], [Seconds]))
The hours should spill into the days.
--Nate