Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Combine two arrays, alternating their elements

I'm thinking how one would go about doing this in PQ.    Input : arr1[] = {1, 2, 3, 4, 5, 6} arr2[] = {11, 22, 33, 44} Output: {1, 11, 2, 22, 3, 33, 4, 44, 5, 6} Input : arr1[] = {1, 2, 3,...
  • ImkeF's avatar
    7 years ago

    Assuming the arrays are list objects in the Query editor, you can use this function:

     

    List.Select(List.Combine(List.Zip({Array1, Array2})), each _ <> null)