Hi there.
I've got a novel problem that I cannot seem to crack.
Two tabs. Tab1 contains a list of proper names, like so:
|NAME|FIRST|LAST|
|John Lennon|John|Lennon|
|Paul McCartney|Paul|McCartney|
|George Harrison|George|Harrison|
|Ringo Starr|Ringo|Starr|
On Tab2, I've got many rows with one column containing a long filepath with lots of garbage in it. But amongst that filepath appear the last names of these people. It might look something like this:
|PATH|
|\\NAS01\local\london\apple\abbey+road\starr\blahblah\blah|
|\\NAS01\local\liverpool\cavern\harrison\blahblah\blah|
I need to add a column on Tab2 that will look in the long path and provide a match of the name from amongst those appearing on Tab1 that it finds in the long path. So the result on Tab2 would be:
|PATH|NAME|
|\\NAS01\local\london\apple\abbey+road\starr\blahblah\blah|Ringo Starr|
|\\NAS01\local\liverpool\cavern\harrison\blahblah\blah|George Harrison|
Appreciate the help!
I've got a novel problem that I cannot seem to crack.
Two tabs. Tab1 contains a list of proper names, like so:
|NAME|FIRST|LAST|
|John Lennon|John|Lennon|
|Paul McCartney|Paul|McCartney|
|George Harrison|George|Harrison|
|Ringo Starr|Ringo|Starr|
On Tab2, I've got many rows with one column containing a long filepath with lots of garbage in it. But amongst that filepath appear the last names of these people. It might look something like this:
|PATH|
|\\NAS01\local\london\apple\abbey+road\starr\blahblah\blah|
|\\NAS01\local\liverpool\cavern\harrison\blahblah\blah|
I need to add a column on Tab2 that will look in the long path and provide a match of the name from amongst those appearing on Tab1 that it finds in the long path. So the result on Tab2 would be:
|PATH|NAME|
|\\NAS01\local\london\apple\abbey+road\starr\blahblah\blah|Ringo Starr|
|\\NAS01\local\liverpool\cavern\harrison\blahblah\blah|George Harrison|
Appreciate the help!