retreiving cell address of vlookup value

A

amyc

Anyone know what the easiest way is to get the cell address of th
result of a vlookup function?

Example:

Col A Col B
Row 1 CA ???

Row 10 AZ Arizona
Row 11 CA California
Row 12 IL Illinois

vlookup(A1, A10:B12, 2, false) = California

=> I want the cell address of "California" to appear in B
 
D

Domenic

Try...

=CELL("address",INDEX(B10:B12,MATCH(A1,A10:A12,0)))

or

=CELL("address",INDEX(A10:B12,MATCH(A1,A10:A12,0),2))

Hope this helps!
 

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

Top