Cell Reference Issue

C

Craig

I'm using Excel 2003.

The following formula works fine (returns the reference $E$14):

=CELL("address",INDEX(A8:N19,MATCH(A3,A8:A19,FALSE),MATCH(B3,A8:N8,FALSE)))


However, the following formula DOESN'T work:

=offset(CELL("address",INDEX(A8:N19,MATCH(A3,A8:A19,FALSE),MATCH(B3,A8:N8,FALSE))),2,2)

I just want to return the value that's 2 rows down and 2 rows over from the
reference returned ($E$14).

Am I missing something?

Thanks.
 
J

Jacob Skaria

USE INDIRECT()

=INDIRECT(CELL("address",INDEX(A8:N19,MATCH(A3,A8:A19,FALSE)+2,MATCH(B3,A8:N8,FALSE)+2)))
 

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