Question on looking up data

N

Nick H

I have a large table, and I am using VLOOKUP to find data. What I need is a
way to get Excel to return the value in the cell immediately below the one
that contains the value that VLOOKUP finds. For example, let's say
VLOOKUP(10,A1:C:200,2) returns a value from B50. The value I want is in B51;
how can I get that? Thanks.
 
J

Jacob Skaria

Nick

Use a combination of INDEX() and MATCH() functions

=INDEX(A1:C200,MATCH(10,A1:A200,0)+1,2)

If this post helps click Yes
 
N

Nick H

Perfect! Thanks.

Jacob Skaria said:
Nick

Use a combination of INDEX() and MATCH() functions

=INDEX(A1:C200,MATCH(10,A1:A200,0)+1,2)

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