Goal: Combine two separate ranges into one list.
VSTACK puts them on top of each other. HSTACK puts them side-by-side.
Result Spill Range
(Result will spill here)
Ready...
💻 Formula Structure
=VSTACK(array1, [array2], ...)
- Action: Appends arrays vertically (Row-wise).
- Dimensions: Column counts must match or Excel pads with #N/A.
=HSTACK(array1, [array2], ...)
- Action: Appends arrays horizontally (Column-wise).
- Dimensions: Row counts must match or Excel pads with #N/A.
-- Select a function...
...
⚠️ Common Pitfalls
🚫 Mismatched Sizes
If you HSTACK a 2-row array with a 3-row array, Excel fills the missing cells with #N/A errors.
💡 Combining Headers
VSTACK is perfect for combining a Header row with a Data range: =VSTACK(A1:C1, A2:C100).