
You can try this:
Paste this code into the Advanced Editor to see how it transfroms what you show to what you want
let
//Change Source to your actual data source
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8spPVdJRMjbUMzYyBjIMlWJ1gIKpaWkgjpWBEVTcSCk2FgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Athlete = _t, #"Interval Time" = _t, Rank = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Athlete", type text}, {"Interval Time", type text}, {"Rank", Int64.Type}}),
//Change time column to actual duration
#"Duration" = Table.TransformColumns(#"Changed Type",{"Interval Time", each
[a=Text.Split(_,":"),
b=List.Repeat({"00"}, 3-List.Count(a)),
c=b & a,
d = Text.Combine(c,":"),
e=Duration.FromText(d)][e], type duration
})
in
Duration
