Vlookup With A Twist

  • Thread starter Thread starter nebb
  • Start date Start date
N

nebb

I have a four column array from A1 to D50. If I use the following
formula:
=vlookup(247,A1:D50,3,false)
when the number 247 is found in column A of the array, the contents in
the cell in column C of the same row as where 247 was found, would be
returned. I would like to return the data in cell C, not from the same
row but from the very next row. Is there any way to do this???
 
a twisty way........

=INDEX(A1:D50,MATCH(G1,A1:A50,1)+1,3)

where G1 = 247
 

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