Helpo de LibreOfficeDev 25.8
Appends arrays vertically to create a larger array.
=VSTACK(Array [; Array_1 [; Array_2 [; ...]]])
Array: The first array to be returned in a new array.
Array_1; Array_2; ...: (optional) the arrays to append sequentially after the previous array.
And the second array as:
The formula {=VSTACK(A1:E3;N15:O19)} returns the array below, with data of array N15:O19 below data of array A1:E3, and extra cells filled with #N/A error:
| AAA | BBB | CCC | DDD | EEE | 
| FFF | 
 | 
 | III | JJJ | 
| KKK | LLL | MMM | NNN | OOO | 
| PPP | QQQ | #N/A | #N/A | #N/A | 
| RRR | SSS | #N/A | #N/A | #N/A | 
| TTT | UUU | #N/A | #N/A | #N/A | 
| VVV | WWW | #N/A | #N/A | #N/A | 
| XXX | YYY | #N/A | #N/A | #N/A | 
COM.MICROSOFT.VSTACK