Case-sensitive VLOOKUP in Excel

Freeman2022

New Member
Joined
Nov 3, 2021
Messages
41
Office Version
  1. 365
Platform
  1. Windows
Hello,

I'm currently using excel 365, I'm trying to find a "look up" formula that will recognize text case.
 

Attachments

  • Case Sensitive.PNG
    Case Sensitive.PNG
    11.1 KB · Views: 9

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Try:
Book2
ABCDE
1Itemprice
20031W00002j4DSH$5.000036S00005hbLhQ
30034000000nUJCG$6.008
40036S00005hbLhq$7.00
50036S00005hbLhQ$8.00
Sheet2
Cell Formulas
RangeFormula
E3E3=FILTER(C2:C5,ISNUMBER(FIND(E2,A2:A5)),"No Match")
 
Upvote 0
Another way:
Book1
ABCDE
1Itemprice
20031W00002j4DSH50036S00005hbLhQ
30034000000nUJCG68
40036S00005hbLhq7
50036S00005hbLhQ8
Sheet5
Cell Formulas
RangeFormula
E3E3=INDEX(A2:C5,MATCH(TRUE, EXACT(E2, A2:A5), 0),COLUMNS(A1:C1))
 
Upvote 0
Solution
You're welcome, glad we helped. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,933
Members
449,480
Latest member
yesitisasport

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top