Forum Discussion
Dicken
7 months agoPost Prodigy
Concatenate lists ;
Hi, This give the result i want but does anyone have ideas to make more dynamic or just better approach so start = {"A","B","C"} , result = {{ "A","C"} , {"A","B"} , {"AC"} , {"AB"} } ...
- 7 months ago
let Source = {"A", "B", "C"}, w = List.TransformMany( List.Skip(Source), (x) => {x, {x}}, (x, y) => if y is text then {Source{0} & y} else {Source{0}} & y ) in w