Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Icon for Administrator rankAdministrator
3 years ago
Solved

How to create a new LIST by concatenating two LISTS in the same position?

I have two columns, each containing a List, both created using delimiters on a single cell of text.   eventType eventBy List List   Each List contains a string corresponding to the pos...
  • slorin's avatar
    3 years ago

    Hi,

     

    = List.Transform(List.Zip({List1,List2}), each _{0} & " " & Text.From(_{1}))

    Stéphane