Cell row to be dependent upon value in another cell

C

C. MacDonald

Hi
I'm pretty new to Excel, and need help. I am trying to define a cell that is
in column C, and whose row value is determined by reference to another cell.
For example:

C(($B$1)+5) would define the row to be the value given by the number in
$B$1, with 5 added to it.

I don't know if what I am trying to do is possible. If it is not, could
someone suggest another way?

Thanks!
 
C

C. MacDonald

Thanks Elkar. I don't think that will work. I am trying to use the cell in an
equation, such as:

c7*c(($B$1)+5)

Any ideas how to accomplish this?

Thanks!
 
E

Elkar

It should work:

=C7*INDIRECT("C"&$B$1+5)



C. MacDonald said:
Thanks Elkar. I don't think that will work. I am trying to use the cell in an
equation, such as:

c7*c(($B$1)+5)

Any ideas how to accomplish this?

Thanks!
 
Top