Approximate Address Match/Search that returns multiple possible results

jwp5151

New Member
Joined
Jun 16, 2015
Messages
1
Hello, I'm trying to perform a search of a database that searches for an approximate match of an address and provides a return of the unique identifier associated with each address match. Currently I am able to perform an exact match using the below formula which I have populated down 20 rows:

Code:
=IFERROR(INDEX(DATA!$F$2:$F$16606, SMALL(IF($C$11=DATA!$E$2:$E$16606, ROW(DATA!$E$2:$E$16606)-ROW(DATA!$E$2)+1), ROW(DATA!1:1))),"")

C11 in the above formula is the cell where I would type the search string value.

L1a9aIZ.png


iJe8mfE.png


Basically what I would like to be able to is type in something along the lines of "123 Elm" and have the formula search the data source for all addresses that have "123 Elm" in them regardless of whether it's Elm Drive, Elm Street, Elm Road so on so forth and then return the associated App ID number. There will be a high chance of having duplicate results where there are 3 different cases of "123 Elm Road" even though they may have a different associated App ID Number.

Thanks in advance!
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
I am not good enough with formulas to answer your question using them.
Would you be able to use an autofilter? If so filtering the address for 123*Elm* would show all things that started with 123 and contained Elm, including 123Elm and 123 Elm (No space and multi space)
VBA Code could also solve this
 
Upvote 0

Forum statistics

Threads
1,214,619
Messages
6,120,550
Members
448,970
Latest member
kennimack

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