Gabungkan rentang atau array secara vertikal
=VSTACK(array1, [array2], ...)
| Parameter | Deskripsi |
|---|---|
array1 |
The first array or range to combine. |
array2 |
[optional] The second array or range to combine. |
VSTACK stacks ranges or arrays vertically. In the example below, the range B3:B5 is combined with the range B8:B9. Each subsequent range/array is appe
=VSTACK(B3:B5,B8:B9)
VSTACK can work interchangeably with both arrays and ranges. In the worksheet below, we combine the array constant {"Color","Qty"} with the range B3:C
=VSTACK({"Color","Qty"},B3:C7)
When VSTACK is used with arrays of different size, the smaller array will be expanded to match the size of the larger array. In other words, the small
=VSTACK(B5:C8,B11:B13)
By default, the cells used for padding will display the #N/A error. One option for trapping these errors is to use the IFERROR function. The formula i
=IFERROR(VSTACK(B5:C8,B11:B13),"")