Comparing addresses in a single column.

excellahuntress

New Member
Joined
Oct 31, 2020
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Clients tend to write their addresses in different ways. How can I make it so that excel states those addresses are the same/match? I have over 5000 rows to go through.

Example
100 Ab 28th street
1930 Fergy Ave
100 28th st
3216 Broadway Ave
2627 Fate Street
W 100 28th street
1320 Summit Blvd

So all of the 100 28th St addresses would be matches
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
union.xlsm
AB
1100 Ab 28th streetsame
21930 Fergy Avedifferent
3100 28th stsame
43216 Broadway Avedifferent
52627 Fate Streetdifferent
6W 100 28th streetsame
71320 Summit Blvddifferent
Sheet1
Cell Formulas
RangeFormula
B1:B7B1=IF(ISNUMBER(SEARCH("*100*28th*",A1)),"same","different")
Named Ranges
NameRefers ToCells
_FilterDatabase=Sheet1!$A$1:$C$10B1
 
Upvote 0
Or use AutoFilter
11.png

input:
*100*28th*
22.png

or Contains
33.png
 
Upvote 0
I know that,this is just a way of thinking about the use of wildcards
 
Upvote 0

Forum statistics

Threads
1,215,002
Messages
6,122,652
Members
449,092
Latest member
peppernaut

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