Conditional Match ?

acctlab5

New Member
Joined
Jul 25, 2004
Messages
7
Is there a way to look for a match for the first 5 letters( or any number) of a list of names?

One of my lists has " ABC Company" and the the other list may have " ABC Co Inc".

I'm trying to find similar names in both lists.

Thanks
\db
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
It's certainly possible.

Could you supply some more information of what data you have and how it is structured?

Have you tried using Data>Filter>AutoFilter and then chosing (Custom) from the dropdown?
 
Upvote 0
acctlab5 said:
Is there a way to look for a match for the first 5 letters( or any number) of a list of names?

One of my lists has " ABC Company" and the the other list may have " ABC Co Inc".

I'm trying to find similar names in both lists.

Thanks
\db

You could have something like...

=MATCH(LEFT(A1,5)&"*",Range,0)

=VLOOKUP(LEFT(A1,5)&"*",Range,ColIdx,0)

However, you may still miss matches more than you'd like. Do a search on fuzzy match on this board, which would effect more hits.
 
Upvote 0
How about this.

It would help alot if I could filter/sort (or whatever) the addresses and zip codes out.This would make the lists smaller.

How can this be done?

\db
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,700
Members
448,979
Latest member
DET4492

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