VLookup & Case Sensitivity

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All,

I am trying to compare two spreadsheets of text strings, I only want to find
those that match content and case. Currently Excel says that they match even
if the case is not matching ie

Follow Up is not the same as Follow up

But with my current standard vlookup statement, Excel returns these values
as matching.

Please can someone help.

Thanks
 
try this

=IF(EXACT(K4,VLOOKUP(K4,I5:J11,1,FALSE)),VLOOKUP(K4,I5:J11,2,FALSE))

change references accordingly.
 
One way ..

Assume you're using this in B1, with B1 copied down:
=VLOOKUP(A1,$E$1:$F$10,2,0)

Try placing this instead in B1, then array-enter the formula by pressing
CTRL+SHIFT+ENTER, instead of just pressing ENTER:
=IF(A1="","",INDEX($F$1:$F$10,MATCH(TRUE,ISNUMBER(FIND(A1,$E$1:$E$10)),0)))
Copy B1 down

Adapt the ranges to suit ..
 
One more...

=INDEX(Sheet2!B1:B999,MATCH(TRUE,EXACT(A1,Sheet2!A1:A999),0))

This is an array formula. Hit ctrl-shift-enter instead of enter. If you do it
correctly, excel will wrap curly brackets {} around your formula. (don't type
them yourself.)

Adjust the range to match--but you can't use the whole column.
 
thanks, worked perfectly!
--
K Hogwood-Thompson


starguy said:
try this

=IF(EXACT(K4,VLOOKUP(K4,I5:J11,1,FALSE)),VLOOKUP(K4,I5:J11,2,FALSE))

change references accordingly.
 

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 in 2007 is now case sensitive 5
Vlookups not working 2
Match and Vlookup issue 2
Vlookup 3
VLOOKUP case sensitivity 3
VLOOKUP Question 6
tilda in VLOOKUP and MATCH 2
Getting a case sensitive match? 5

Back
Top