Get Cell Value by Address (Row & Column) – Excel & Google Sheets

Written by

Editorial Team

Reviewed by

Steve Rynearson

Last updated on July 24, 2023
Download Example Workbook

Download the example workbook

This tutorial demonstrates how to get a cell value using the address of the cell (row and column) in Excel and Google Sheets.

get cell value by address Main Function

Get Cell Value With the INDEX Function

We can get the value of a cell (its content) by using the INDEX Function.

The INDEX Function looks up a cell contained within a specified range and returns its value.

=INDEX(A1:J10,C3,C4)

INDEX

In the example above, the range specified in the INDEX formula is “A1:J10”, the row is cell “C3” (“3”), and the column is cell “C4” (“5”).

The formula looks through the range “A1:J10”, checks the cell in Row 3 and Column 5 (“E3”) and returns its value (“Success”).

Get Cell Value With the INDIRECT Function

Another option for getting the value of a cell by its address is to use the INDIRECT Function.

We can use the INDIRECT Function here in two different ways.

Using Text Reference Within the INDIRECT Function

The INDIRECT Function changes a specified text string to a cell reference and returns its value.

=INDIRECT("R" & 3 & "C" & 2,FALSE)

INDIRECT

In the example above, the specified text string is “R3C2”. This means Row 3, Column 2. So the formula returns the value in that address (“Sarah”).

Note: The FALSE argument in this formula indicates the cell reference format (R1C1). (TRUE would use A1 style cell referencing).

Get Cell Value by Using INDIRECT and ADDRESS

The second way to get the value of a cell using the INDIRECT Function is to combine it with the ADDRESS Function.

=INDIRECT(ADDRESS(4,2))

INDIRECT & ADDRESS

Let’s breakdown the formula into steps.

=ADDRESS(4,2)

ADDRESS-42

The ADDRESS Function takes a specified row number (“4”) and column number (“2”) and returns its absolute reference (“$B$4”). Therefore, the absolute reference for the cell in Column 2 (Column B based on position) and Row 4 is $B$4.

The INDIRECT Function returns the value of the cell referenced.

=INDIRECT(D3)

ADDRESS

Combining these steps gives us our initial formula:

=INDIRECT(ADDRESS(4,2))

INDIRECT & ADDRESS

Note: The INDIRECT Function is volatile. It recalculates every time the workbook does and can cause Excel to run slowly. We recommend avoiding the use of large numbers of INDIRECT Functions in your workbooks.

Get Cell Value by Address in Google Sheets

These formulas work exactly the same in Google Sheets as in Excel.

get cell value by address row column Google Function

AI Formula Generator

Try for Free

Excel Practice Worksheet

practice excel worksheet

Practice Excel functions and formulas with our 100% free practice worksheets!

  • Automatically Graded Exercises
  • Learn Excel, Inside Excel!

Free Download

Return to Excel Formulas List