Question on looking up data

  • Thread starter Thread starter Nick H
  • Start date Start date
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.
 
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
 
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
 
Back
Top