vlookup to the left

  • Thread starter Thread starter nepentanova
  • Start date Start date
N

nepentanova

i know vlookup in its standard form can only lookup a value in the
table and return a value x columns to the right.
Is it possible to find a value in a table, and return the value on the
corresponding row TO THE LEFT OF THE FOUND VALUE?
Any help / workarounds would be appreciated.
 
Hi
you may use a combination of MATCH/INDEX. e.g.
=INDEX(A1:A100,MATCH(value,B1:B100,0))
 
Not using VLOOKUP, but

=INDEX(A:A,MATCH("test",F:F,False))

will return the value in column A corresponding to the first cell with
"test" in column F.
 

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

Similar Threads

VLOOKUP returning #N/A result 2
VLOOKUP *Left* Value 4
Vlookup only the last 6 characters 2
vlookup from right to left 2
VLookup 1
Vlookup Function 1
vlookup and sum of colums 5
VLOOKUP problem 3

Back
Top