i'm using Power Query in Excel to filter some .txt files, extract a time value from each and show the results. The problem is the original data which comes in 3 different formats:
3:42.807
0:01:48.19
3:46
how can i convert them in a consistent format (e.g. 3:42.80). I need to show minutes, seconds and eventually milliseconds.
I tried several different Duration.ToText or Duration.From but i had more problems.
Also i'd like to avoid adding an extra column just to calculate the duration format. Is it possible to convert the original column only?
= Table.TransformColumnTypes(#"Reordered Columns",{{"Time", type duration}})
This is the formula from Power query i sued to convert to duration, but i don't like this format "d.hh.mm.ss" etc. it gives me errors. It would be perfect if it was a Duration type but only displaying minutes, seconds and milliseconds (3:41.23)
Any help please?
