Complete the formula to create a dynamic range starting at cell A1 with 5 rows and 1 column.
=OFFSET(A1, 0, 0, [1], 1)
The OFFSET function here starts at A1 and extends down 5 rows and 1 column wide, so the height argument should be 5.
Complete the formula to create a dynamic range starting at B2, offset 2 rows down and 1 column right, with 3 rows and 2 columns.
=OFFSET(B2, [1], [2], 3, 2)
The formula moves 2 rows down and 1 column right from B2, so the row offset is 2 and the column offset is 1.
Fix the error in the formula to create a dynamic range starting at C3 with a height equal to the value in cell D1 and width 1.
=OFFSET(C3, 0, 0, [1], 1)
The height argument must be a single number. Using 'D1' references the value in cell D1 correctly.
Fill both blanks to create a dynamic range starting at A1, offset 0 rows and 0 columns, with height based on the count of numbers in column B and width 1.
=OFFSET(A1, [1], [2], COUNT(B:B), 1)
The offset rows and columns are both zero to start at A1. The height is set by COUNT(B:B) which counts numbers in column B.
Fill all three blanks to create a dynamic range starting at cell A1, offset 0 rows and 0 columns, with height equal to the number of non-empty cells in column A and width 1.
=OFFSET(A1, [1], [2], COUNTA([3]), 1)
The offsets are zero to start at A1. COUNTA(A:A) counts all non-empty cells in column A to set the height.