Skip to main content
Version: Streamsheets 3.0

INDEX

Returns a cell within the range using the row and column offset. If row or column is 0, INDEX returns the complete column or row respectively.

Syntax

=INDEX(Range, Row, Column)

Arguments

NameTypeDescription
RangeRangeRange of cells to search in.
RowNumberRow index or offset starting with 1. Specify 0 to return complete column.
ColumnNumberColumn index offset starting with 1. Specify 1 to return complete row.

Return

TypeDescription
ValueCell value of the cell within the range with an offset of row and column.

Examples

AB
123
284
313
FormulaResultComment
=INDEX(A1:B3,2,1)
8The value of cell A2 is returned.