where range1 (B5:B8) and range2 (D5:D9) are named ranges. The formula appends the second range to the first range and the result spills into F5:F13. See below for details. Note: While this is a good example of what can be done with dynamic array formulas, Excel now contains two new functions that make this approach unnecessary: the HSTACK function and the VSTACK function.

Single column ranges

The formula to combine single column ranges is based on INDEX function, the SEQUENCE function, the IF function, and the LET function. In the example above, the formula in cell F5 is: where range1 (B5:B8) and range2 (D5:D9) are named ranges. The first two lines inside let assign range1 to the variable “a” and assign range2 to the variable “b”. Range1 and Range2 do not have to be provided as named ranges; you could instead use B5:B8 and D5:D9. Next, the SEQUENCE function creates a numeric “row index” to cover all rows in both ranges: The resulting array is assigned to the variable “s”. In the next line, the IF function is used to iterate through the array. If the current value s is greater than the rows in a, the INDEX function returns the value of b at row s minus the row count of a: Otherwise, the INDEX function returns the value of a at row s: The resulting values spill into the range F5:F13. Note: a reader mentioned this formula to me based on the stackoverflow answer here.

Multiple column ranges

The formula to combine ranges with multiple columns is more complex. In the worksheet below, the formula in B5 looks like this where range1 (E5:F9) and range2 (H5:I10) are named ranges. Note that line breaks have been added for readability. 

Like the formula above, this formula figures out how many rows are in both ranges, and uses the SEQUENCE function to create a “row index” with the SEQUENCE function here: In a similar way, SEQUENCE is also used to create a “column index”, named “c”: The IF function tests all values in the row index sequence with the row count for range 1. When a row index value is less than or equal to the count of the rows in a (5), the INDEX function is used to fetch a row from range a at the current index value (r): When a row index value is greater than 5, INDEX is used to fetch rows from b: Note c remains constant as {1,2} , the column index for range a. This is a shortcut to keep things simple. This formula does not try to figure out if the column counts for both ranges are the same or not. It simply assumes the column counts are the same and requests both columns.

Custom function with LAMBDA

The LAMBDA function can be used to create custom functions. The formula on this page is a good candidate, because it is relatively complex. When converted to a custom LAMBDA function, it is much easier to call: See this article for more detail.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.