How to make a flexible cell reference?

M

Mar Vernooy

Does anyone know how to make a reference to a cell flexible. I.e. I want a
formula to get data from a cell, but want the cell to be dependant on some
other value. E.g. =C"x+1" where "x+1" is a column number dependant on the
value of x.

I sure hope anyone can help me with this!

Mark
 
D

Dave Peterson

Is x a cell on a worksheet?

If yes, then maybe you want something like:

=INDIRECT("C"&A1)
or
=INDIRECT("C"&A1+1)
 
Top