This function appends ranges vertically and in sequence to return a larger array.

Sample Usage

VSTACK(A2:C4; A6:C8)

Syntax

VSTACK(range1; [range2, …])

  • range1: The first range to append.
  • range2, …: [ OPTIONAL ] Additional ranges to add to range1.

Examples

Simple append operation with VSTACK

Example data:

1Warehouse A ItemWarehouse A ColorWarehouse A Quantity
2JeansBlue100
3T-shirtPink110
4ShortsRed120
5Warehouse B ItemWarehouse B ColorWarehouse B Quantity
6SkirtPink150
7T-shirtBlack100
8ShoesGrey50

Example: Input this formula in E2: =VSTACK(A2:C4;A6:C8)

Result:

1Warehouse ItemWarehouse ColorWarehouse Quantity
2JeansBlue100
3T-shirtPink110
4ShortsRed120
5SkirtPink150
6T-shirtBlack100
7ShoesGrey50

Make a Copy