Forum Discussion

nelsonwhyu's avatar
nelsonwhyu
Frequent Visitor
6 years ago
Solved

Concatenate Dynamic COlumn

Hi, I am trying to create a new Column "Key" by concatenating every column with header starting with "Level ". However, number of Levels are dynamic and varies across my source files.  Lev...
  • artemus's avatar
    6 years ago
    = Table.AddColumn(Source, "Key2", each Text.Combine( List.Transform(Level_List, (col) => Record.Field(_, col)), "__")  )