+ Reply to Thread
Results 1 to 5 of 5

Case Sensitive Vlookup

Hybrid View

VegasL Case Sensitive Vlookup 05-25-2010, 12:26 PM
NBVC Re: Case Sensitive Vlookup 05-25-2010, 12:34 PM
contaminated Re: Case Sensitive Vlookup 05-25-2010, 12:41 PM
NBVC Re: Case Sensitive Vlookup 05-25-2010, 12:49 PM
day92 Re: Case Sensitive Vlookup 05-25-2010, 01:20 PM
  1. #1
    Forum Contributor
    Join Date
    02-10-2007
    MS-Off Ver
    Excel 2010
    Posts
    293

    Case Sensitive Vlookup

    Hello,

    I am trying to make this formula case sensitve vlookup.

    IF(ISNA(VLOOKUP(B3,$A:$A,1,FALSE)),B3,"").

    Any help would be appreciated?

    Using excel 2007

    Thanks

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Case Sensitive Vlookup

    You mean?

    =IF(ISNA(VLOOKUP(B3,$A:$A,1,FALSE)),"",IF(EXACT(B3,VLOOKUP(B3,$A:$A,1,FALSE)),B3,""))
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Forum Expert contaminated's Avatar
    Join Date
    05-07-2009
    Location
    Baku, Azerbaijan
    MS-Off Ver
    Excel 2013
    Posts
    1,430

    Re: Case Sensitive Vlookup

    U can use this array function
    =INDEX(B2:B10,MATCH(TRUE,EXACT(D4,A2:A10),0))

    see attachement
    Attached Files Attached Files
    Люди, питающие благие намерения, как раз и становятся чудовищами.

    Regards, ?Born in USSR?
    Vusal M Dadashev

    Baku, Azerbaijan

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Case Sensitive Vlookup

    Or non-array entered:

    =INDEX(A2:A10,MATCH(TRUE,INDEX(EXACT(B3,A2:A10),0),0))

    where you are only checking that the value in B3 exists exactly as is written in B3 within A1:A10....

  5. #5
    Forum Contributor day92's Avatar
    Join Date
    04-20-2010
    Location
    Los Angeles
    MS-Off Ver
    Excel 360
    Posts
    600

    Re: Case Sensitive Vlookup

    Or you can use this non array IF statement. Take your pick!

    =IF(ISNA(MATCH(TRUE,INDEX(EXACT(D4,A2:A10),,1),0)),"",INDEX(B2:B10,MATCH(TRUE,INDEX(EXACT(D4,A2:A10),,1),0)))

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1