Forum Discussion

arcegabriel's avatar
arcegabriel
Icon for Helper I rankHelper I
5 years ago
Solved

Concatenate values with sort in Power Query

I am trying to concatenate two strings but really my concatenation should be indifferent from the column in which they appear What I have a  b  > should concatenate as a, b a  c  > should concaten...
  • ChrisMendoza's avatar
    5 years ago

    arcegabriel -

    To accomplish like:

    Add Column

    Custom =
    Record.ToList([[Column1],[Column2]])

    Add another Column

    Custom.1 =
    List.Sort([Custom])

    Extract Values from Custom.1