Functions
HSTACK
Horizontally stacks arrays
Try it
When to use it
When should I use HSTACK?
Use HSTACK to combine two or more arrays side by side into a single wider array, useful for assembling columns from different sources.
Used in
Syntax
HSTACK(array1, ...)Examples
=HSTACK({1,2},{3,4}) // => 1
=HSTACK({1,2;3,4},{5,6;7,8}) // => 1
=HSTACK({1},{2},{3}) // => 1