Forum Discussion

purple_SP's avatar
purple_SP
Helper I
3 years ago
Solved

Finding duplicate lists where the values are in different orders

Hello, I am working with some data in the following type of format where column 3 is a list of values:   Column 1  Column 2  Column 3  John  Smith  A,B Sarah  Jones  B,C Jane  Wo...
  • wdx223_Daniel's avatar
    3 years ago

    NewStep=Table.Distinct(Table.TransformColumns(PreviousStepName,{"Column 3",each Text.Combine(List.Sort(Text.Split(_,",")),",")}))