Dynamic cell access

Yoot picture Yoot · Sep 22, 2011 · Viewed 20k times · Source

My question may seem quite simple but I haven't found the answer yet.

In excel, I would like to access a cell with a dynamic row number.

Example 1 : cell A(1+2)
Example 2 : cell B(ROW(A1)*10)

What is the syntax for this ?

Thanks.

Answer

Excellll picture Excellll · Sep 22, 2011

Use the INDIRECT function:

=INDIRECT("A" & (1+2))
=INDIRECT("B" & ROW(A1)*10)