C
cdhmotes
I have a large dataset in which I need to find a list of partial strin
matches, and then return a value associated with each unique partia
string match.
Example
======
The dataset:
indallastexas
musicfan
bluechair
twentyminutesago
The lookup table:
LookupValue MasterValue
------------ ------------
dallas city
music noun
blue color
minutes time
Desired result:
indallastexas city
musicfan noun
bluechair color
twentyminutesago time
So for all occurences of the word "dallas", I need to return the valu
"city" in that row. My dataset is quite large, and I need to repea
this periodically so simply finding/replacing is not an option. I als
cannot parse the dataset in a way that will put all of my exact looku
values into a column. There are no character patterns in the data tha
vlookup can use, in other words everything is a string and the looku
values in the strings do not have consistent placement patterns in th
cells.
This seems like a vlookup with a partial match vs. exact match. An
ideas
matches, and then return a value associated with each unique partia
string match.
Example
======
The dataset:
indallastexas
musicfan
bluechair
twentyminutesago
The lookup table:
LookupValue MasterValue
------------ ------------
dallas city
music noun
blue color
minutes time
Desired result:
indallastexas city
musicfan noun
bluechair color
twentyminutesago time
So for all occurences of the word "dallas", I need to return the valu
"city" in that row. My dataset is quite large, and I need to repea
this periodically so simply finding/replacing is not an option. I als
cannot parse the dataset in a way that will put all of my exact looku
values into a column. There are no character patterns in the data tha
vlookup can use, in other words everything is a string and the looku
values in the strings do not have consistent placement patterns in th
cells.
This seems like a vlookup with a partial match vs. exact match. An
ideas