Function reference ยท Lookup

INDEX

Returns the value at a given row and column position inside a range.

INDEX(reference, [row], [column])

INDEX is positional: tell it a range and a coordinate, and it hands back what is sitting there. On its own it is rarely useful; paired with MATCH, which works out the coordinate for you, it becomes the most flexible lookup in the sheet.

Arguments

ArgumentRequiredWhat it does
reference Yes The range to index into.
row Optional Row offset within the range, starting at 1. Use 0 to return the whole column.
column Optional Column offset within the range, starting at 1. Use 0 to return the whole row.

Worked example

RegionRepSales
WestAna1200
EastBen900
WestCara1500
NorthDan600
EastEve1100
=INDEX(C2:C6, 3)

Returns 1500.

The third value in C2:C6 is Cara's 1500.

Gotchas

Related functions