ZIP
Last updated
Was this helpful?
Last updated
Was this helpful?
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 page.
ZIP('element1,...,elenentN', array1[], ..., arrayN[])
element1,...
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.
array1[],...
Comma separated list of single element arrays to be zipped into a single multi-element array.
Single Array constructed of the elements in the input array(s).