Returns a reference to a range that is a specified number of rows and columns from a cell or range of cells.
This function works the same in Google Sheets as it does in Excel — same syntax and arguments.
OFFSET(reference, rows, cols, [height], [width])The OFFSET function does not move any cells or change the selection; it simply returns a reference. It is a volatile function that recalculates every time the worksheet changes, making it useful for creating dynamic ranges.
=OFFSET(A1, 2, 1)Result: B3
Returns the value in the cell two rows down and one column to the right of A1.
Yes, OFFSET recalculates every time any change is made to the worksheet, which can slow down large workbooks.