Appends arrays vertically to return a single combined array.
Bu işlev, Google E-Tablolar'da Excel'deki gibi çalışır — aynı söz dizimi ve bağımsız değişkenler.
VSTACK(array1, [array2], ...)The VSTACK function combines multiple ranges or arrays into one single vertical array. It automatically stacks the second array below the first, the third below the second, and so on, maintaining the original column structure.
=VSTACK({1;2}, {3;4})Sonuç: {1;2;3;4}
Combines two vertical arrays into one column of four rows.
VSTACK will return a #N/A error for the empty cells created by the mismatch.