New: ready-to-use spreadsheet templatesExplore the collection  →
LOOKUP & REFERENCE · GOOGLE SHEETS

INDEX
return a value at a row and column position.

Use INDEX to return the value in the third row and second column. This guide shows the exact structure, a working example and the mistakes most likely to break it.

JosephineVerified by JosephineReviewed July 25, 2026
THE FORMULA=INDEX(reference, [row], [column])
A

referencesource range

B

rowrow position

C

columncolumn position

TRY IT YOURSELF

Change the sheet.
Watch the answer update.

Edit any highlighted cell below. The example recalculates immediately.

LIVE PLAYGROUND=INDEX(B2:D8,3,2)
fx=INDEX(B2:D8,3,2)
A · NAMEB · TEAMC · AMOUNT
2
3
4
5
RESULTProductUpdates live

Try changing a value above. This example runs entirely in your browser.

IN PLAIN ENGLISH

How the formula
thinks.

  1. 01

    referencesource range

  2. 02

    rowrow position

  3. 03

    columncolumn position

COMMON FIXES

When INDEX
doesn’t behave.

WRONG RESULT

Wrong result

Check that every range starts and ends on the same rows, and that numbers are stored as numbers.

FORMULA PARSE ERROR

Formula parse error

Check commas, quotation marks and closing parentheses. Your locale may use semicolons instead of commas.

UNEXPECTED BLANKS

Unexpected blanks

Test the source cells for hidden spaces, empty strings and inconsistent data types.

fxNeed help with INDEX?Fix my formula →