Functions
VSTACK
Vertically stacks arrays
Try it
When to use it
When should I use VSTACK?
Use VSTACK to combine two or more arrays vertically into a single array — useful for merging data from separate table sections or combining monthly datasets into one continuous block.
Used in
Syntax
VSTACK(array1, ...)Examples
=VSTACK({1,2},{3,4}) // => 1
=VSTACK({1,2;3,4},{5,6;7,8}) // => 1
=VSTACK({1,2},{3,4},{5,6}) // => 1