Complex Lookup in Excel for values not in same row/column

  • Thread starter Thread starter clemenke
  • Start date Start date
C

clemenke

Is there any way to do a lookup in excel that returns a value in the
same relevant place for the lookup value??
For instance can you do a lookup that takes a value and returns a
value that is 2 cells over and 2 down from the value??

I get a report that has data in two columns, each group of data is 2
columns and 6 rows (12 total cells) A social security number is the
2nd cell down in the first row and that needs to be my lookup value.
I need to merge it with other valuse and get it into access so I would
like for the whole set of data to be linear?

Any suggestions?
 
Use =MATCH() to find the relative row number in the range, and the
=INDEX() to use that row number in the second range (plus 2). Somethin
like :=

=INDEX(E2:E7,MATCH(A1,D2:D7,0)+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

Back
Top