Using a cell value for a reference

G

Guest

I have a value in a cell. I want to get the value in another cell based on
this value. Say that the value in the first cell (A1) is 25. The cell I want
is in column C in this case it would be C25. How do I specify that 25 is a
row reference? This is EXACTLY what I want to do. Not some other type of
lookup, EXACTLY this.

Thanks,

Joe B
 
D

Dave Peterson

Another one:

=index(C:C,a1)


I have a value in a cell. I want to get the value in another cell based on
this value. Say that the value in the first cell (A1) is 25. The cell I want
is in column C in this case it would be C25. How do I specify that 25 is a
row reference? This is EXACTLY what I want to do. Not some other type of
lookup, EXACTLY this.

Thanks,

Joe B
 
G

Guest

JUST GREAT!!!
Xcelsious doesn't support INDIRECT. This tool is SO lacking in
functionality. Back to the drawing board....

Joe B
 
G

Guest

Using that how would I reference a cell in another worksheet in the same
document?

Thanks,

Joe B
 
D

Dave Peterson

Maybe...

=index('Other sheet name here'!x:x,a1)
or
=index(c:c,'other sheet name here'!a1)
 
G

Guest

Dave,

Here's the final working version:

=IF(INDEX(data!A:A,$C$4) = $C$1,INDEX(data!D:D,$C$4),"")

Thanks again,

Joe B
 

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

Top