Exact Match Function Based on Letter Case

Steve=True

Well-known Member
Joined
May 27, 2011
Messages
993
Hello All,

Does anyone know if you can create a Match Function that only finds an Exact Case match?

My Data has records thar are unique in the system, but may not appear unique in excel matching terms.

Record 1 ID: 0016000000g2upN
Record 2 ID: 0016000000g2upn

When performing an exact match, my formula returned the first record with a match, but not an exact match based on the case of the letters.

I need a non-VBA solution. Any help is appreciated. Thanks!
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
I think this array-entered** formula will work...

=MIN(IF(ISNUMBER(FIND(B1,A1:A100)),ROW(A1:A100)))

B1 is assumed to contain the text you want to match; adjust the column range to suit your data.

**Commit formula using CTRL+SHIFT+ENTER, not just Enter by itself.
 
Upvote 0
Thank you both very much!

Do either of you know if there is a non-Array formula way without VBA?

Also, Rick is yours comparing the text as a number and that is why it works?

Thanks much!
 
Upvote 0

Forum statistics

Threads
1,215,110
Messages
6,123,147
Members
449,098
Latest member
Doanvanhieu

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