OFFSET

Returns a reference to a range that is a specific number of rows and columns from a given cell or range.

Parameter List

Syntax
OFFSET(referencerowscols
[height]
[width]
)
reference

The starting cell or range from which the offset is calculated. Example: A1.

rows

The number of rows to offset from the starting reference. Example: 2.

cols

The number of columns to offset from the starting reference. Example: 3.

[optional] height

The height (in rows) of the reference to return. Optional, defaults to the original reference's height.

[optional] width

The width (in columns) of the reference to return. Optional, defaults to the original reference's width.

Examples

OFFSET(A1, 1, 1) returns B2