help please!

B

bilmars

The problem is that I need some help in Excel.
Let me explain:
Here is an example:
If we say that a cell like C5=7 and we need A7,
then we could say that it's the same as A(C5).
But Excel don't understand it.Why?Is there any other
way to write it,to understand??
Thanks,I will wait for your response.
 
S

Sandy Mann

=INDIRECT("A"&C5)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

[email protected]
Replace @mailinator.com with @tiscali.co.uk
 
C

curious engineer

So you are saying that you want to read cell C5, and that cell has a value of
7. Then, you want to put an Ain front of the 7 and make some other cells
value A7?? If that is what you want then you can use the CONCATENATE
function. Type that into the help section and the explanantion should suffice
 
R

Roger Govier

Hi
In addition to Sandy's method, if you want the value that is in cell A7 then
you could also use the non-volatile
=INDEX(A:A,C5)
 
Top