Forum Discussion
Syndicate_Admin
Administrator
3 years agoHow 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...
- 3 years ago
Hi,
= List.Transform(List.Zip({List1,List2}), each _{0} & " " & Text.From(_{1}))Stéphane
Syndicate_Admin
Administrator
3 years agoThank you, this is perfect!