ZIP
ZIP
combines multiple unrelated arrays, by index, into a single array as array elements. Array element names should be specified as a static input. For better understanding of array handling, please review the Work with Arrays page.
Syntax
ZIP('element1,...,elenentN', array1[], ..., arrayN[])
Arguments
| A comma separated list of elements in the output array. The number of elements should match the number of arrays in the parameters that follow. The element list should be enclosed in single quotes. |
| Comma separated list of single element arrays to be zipped into a single multi-element array. |
Returns
Single Array constructed of the elements in the input array(s).
Example
Data:
Query:
Results:
Last updated