VLOOKUP *Left* Value

  • Thread starter Thread starter jim
  • Start date Start date
J

jim

Is there a way to lookup a value in a column and return the
corresponding value in the *left* column? I'm familiar with VLOOKUP,
but didn't know if there's an alternative to re-ordering all of my
data.

Thanks for any insight.
 
Use INDEX/MATCH instead:
=INDEX(D1:D100,MATCH(A1,E1:100))

will search for A1 in E1:E100 and return corresonding value in column D

HTH
 
Hi

Have a look at using INDEX and MATCH together. I would suggest either Excel
Help or this newsgroup. Something like this format:
=INDEX(D12:D20,MATCH("f",E12:E20,0))

Andy.
 
I'll give these a try. Thanks folks.


Jim

Hi

Have a look at using INDEX and MATCH together. I would suggest either Excel
Help or this newsgroup. Something like this format:
=INDEX(D12:D20,MATCH("f",E12:E20,0))

Andy.
 
Where your regular VLOOKUP table is in H1:I5, and your new list to the left
is in G1:G5, then put this in B1 to lookup any value in A1

=INDEX(G:G,MATCH(VLOOKUP(A1,H:H,1,FALSE),H:I,0))

Vaya con Dios,
Chuck, CABGx3
 

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 1
VLOOKUP returning a value when it shouldn't 2
Vlookup only the last 6 characters 2
vlookup 3
vlookup problem 5
REVERSE VLOOKUP 3
Vlookup to the left? 4
vlookup and sum of colums 5

Back
Top