View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default VLookup & Case Sensitivity

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 ..
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"KHogwood-Thompson" wrote:
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
--
K Hogwood-Thompson