APPEND
Use the APPEND function to join together items from two arrays.
Use
APPEND( array1, array2 )
Adds the items from the second array to the end of the first array.
Parameter | Required | Description |
---|---|---|
array1 | Yes | an array (any type) that will have the items from array2 added to the end |
array2 | Yes | an array (any type) who items will be added to the end of array1 |
Returns | Array matching the type of array1 |
Example 1
Function ...
returns ...