Return Results of a cell based on cell referenced in a cell

D

Drew

I am trying to write a formula that will return the results of a cell based
on cell coordinates (including sheet where located and cell within that sheet
(column and row)). Is anyone aware of how to do this?

Thanks,
 
J

Jacob Skaria

=INDEX(Sheet1!A1:J10,5,5)
returns contents from 5th row 5th column of array Sheet1!A1:J10

If this post helps click Yes
 
D

Drew

I should have provided more detail. Within my spreadsheet, I have one cell
that refers to a tab (Store 1) and another cell that refers to the cell
within that tab where the data that I want to return resides (c10). Is there
a formula that I can use that will return the information that I want by
referencing the two cells where the tab and cell information resides? i.e.
=index(c9 (tab data), c10 (cell data to return within that tab).

Thanks,
 
J

Jacob Skaria

cell A1 = tabname
B1 = cell reference..

Try

=INDIRECT("'" & A1 & "'!" & B1)

If this post helps click Yes
 

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