Excel references within references?

M

Mike

If I want one cell to display the contents of another cell based on a value
input in a third cell, I am unable to get it done.

If cell A1 is the input cell, and I type in 25, I would like cell A100 to
display the value of cell A25.

Excel will not allow me to key in the follwing formula in Cell A100:
=(A(A1))
I cannot use the value in A1 to determine which row within column a to
extract data for cell A100.
 
J

Jim Thomlinson

You want the indirect formula. Something like this...

=indirect("A" & A1)
in cell A100
 
R

Ron Rosenfeld

If I want one cell to display the contents of another cell based on a value
input in a third cell, I am unable to get it done.

If cell A1 is the input cell, and I type in 25, I would like cell A100 to
display the value of cell A25.

Excel will not allow me to key in the follwing formula in Cell A100:
=(A(A1))
I cannot use the value in A1 to determine which row within column a to
extract data for cell A100.


=OFFSET(A1,A1-1,0)
=INDEX(A1:A99,A1)
=INDIRECT("a"&A1)



--ron
 
J

Jim Thomlinson

WOW... A lot of people can't wear gold but it looks good on you...
Congratulaions on officially being recognized as someone who has spent way
too much time around here. ;-)
 
G

Gary''s Student

thanks
--
Gary''s Student - gsnu200766


Jim Thomlinson said:
WOW... A lot of people can't wear gold but it looks good on you...
Congratulaions on officially being recognized as someone who has spent way
too much time around here. ;-)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

copying conditional formats 2
a "SUMIF" question 1
Finding Text within an Array 2
I WANT FORMULA 4
Autofill equations 4
Excel Need Countifs Formula Help 0
Format Painter in Excel 2007 4
How to count the number of text? 4

Top