i want to merge two lists into a single list in this fashion in dynamo:
list 1 : 1,3,5,7,9
list 2: 2,4,6,8,10
resulting list should be : 1,2,3,4,5,6,7,8,9,10
any ideas?
i want to merge two lists into a single list in this fashion in dynamo:
list 1 : 1,3,5,7,9
list 2: 2,4,6,8,10
resulting list should be : 1,2,3,4,5,6,7,8,9,10
any ideas?
List.Join + List.Sort
ok, the real scenario is:
List 1: 1500,2500,3500,4500,5500
list 2: 800,1100, 1400, 1700, 2000
i want the output to be 1500,800,2500,1100,3500,1400,4500,1700,5500,2000
Its all about transposing!.. you are a pro… thanks mate.
You’re very welcome The forum is meant for helping each other out, If a comment solved your problem please mark it as the solution!
Cheers!
Can you please answer the above new thread, which is the extension of the present solution.
thanks again