[]
The function appends arrays horizontally and in sequence to return a larger array.
=HSTACK(array1,[array2],...)
This function has the following arguments:
Argument | Description |
---|---|
array | The arrays to append. |
The function returns an array, the type of each value in the array depends on the parameter.
The function returns the array formed by appending each of the array arguments in a column-wise fashion. The resulting array will as follows:
Rows: The maximum of the row count from each of the array arguments.
Columns: The combined count of all the columns from each of the array arguments.