can vlookup be forced to make a case sensitive match?

G

Guest

i have data that is case sensitive, and a vlookup function needs to
differentiate between for examle two values like 'tree' and Tree'.

is it possible to force the vlookup function to match case? thanks
 
D

Domenic

Try...

=VLOOKUP("Tree",IF(EXACT(A1:A10,"Tree"),A1:B10),2,0)

or

=INDEX(B1:B10,MATCH(TRUE,EXACT(A1:A10,"Tree"),0))

Both formulas need to be confirmed with CONTROL+SHIFT+ENTER, not just
ENTER.

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