Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Doing a case sensitive vlookup

Does anyone know how to do a case sensitive vlookup with excel?

like image 645
Alex Gordon Avatar asked Sep 20 '10 22:09

Alex Gordon


People also ask

Can you make a VLOOKUP case sensitive?

Excel VLOOKUP function is not equipped to handle case-sensitive lookup values. In this above example, no matter what lookup value case is (Matt, MATT, or matt), it'll always return 38 (which is the first matching value).

How do I do a case sensitive search in Excel?

To do this task, use the IF, FIND, and ISNUMBER functions. Note: The FIND function is case-sensitive.

Is VLOOKUP capitalized?

However, very few people are aware that Excel's VLOOKUP is case-insensitive, meaning it treats lowercase and UPPERCASE letters as the same characters.

Is VLOOKUP format sensitive?

VLOOKUP is case-insensitive The VLOOKUP function does not distinguish the letter case and teats lowercase and uppercase characters as identical. Solution: Use VLOOKUP, XLOOKUP or INDEX MATCH in combination with the EXACT function that can match text case.


1 Answers

The key issue to a complete solution here is as Dick Kusleika observes: avoiding stopping the search when a case-insensitive match is found before the case sensitive one.

The Blog entry Case Sensitive Lookup in Excel claims to have a solution to this problem using the INDEX and MATCH functions (original info courtesy a post by Peo Sjoblom). There are some alternatives in the comments too.

like image 135
Michael J Lawley Avatar answered Oct 15 '22 09:10

Michael J Lawley