Any Way to Use Vlookup in Reverse?

O

opieandy

Is there any formula in Excel that works like "vlookup", but reads right to
left?

I know there are workarounds for this (namely, repeating columns), but I
encounter this more than I'd think and it would be nice to have a better
solution. Using Excel 2003.

Thanks!

Chris
 
T

T. Valko

Here's the general idea:

...........A..........B
1.......Joe........a
2.......Sue.......b
3......Tom......c
4......Liz........d

Lookup the name associated with b.

D1 = lookup value = b

=INDEX(A1:A4,MATCH(D1,B1:B4,0))
 
O

opieandy

Thanks, Biff!!!

T. Valko said:
Here's the general idea:

...........A..........B
1.......Joe........a
2.......Sue.......b
3......Tom......c
4......Liz........d

Lookup the name associated with b.

D1 = lookup value = b

=INDEX(A1:A4,MATCH(D1,B1:B4,0))
 

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


Top