Forum Discussion

Anonymous55's avatar
Anonymous55
Frequent Visitor
2 years ago
Solved

Struggling to split column or extract data - zero values

Hi!   I have an Excel spreadsheet which contains a list of phone calls received, and the durations of those calls. The durations are displayed as HH:MM:SS, for example:   00:00:21 00:00:13 00:0...
  • rsbin's avatar
    2 years ago

    Anonymous55 ,

    In Power Query:

    Text.End( [Duration],5 )  -- Replace [Duration] with the name of your column

    In DAX

    NewColumn = RIGHT( [Duration], 5 )