Hi!
I have bloody dirty database which I'm trying to clean up. It is basically reference management database I created by export of my references from EndNote.
My issue is that AUTHORS Field (which is temporary until I do cleanup) is string of concatenated authors with “;”as separator. It is easy to use VBA to split this field into separate strings based on separator. However I realized I'm stucked with next step. In Excel I created table of all authors and imported this table as tblAuthors into my database. And now I would like to analyze my unstringed authors one by one against this table like:
string: Brown, A.D. … is there any “Brown” in tblAuthors.LastName?
it is easy to do search for Brown in tblAuthors.LastName with my string (if I would be able to extract only last name, what would be quite difficult). However I would need something like “reverse query” where I can compare this one string to every possible LastName in tblAuthors. Like: “WHERE strAuthor Like *tblAuthors.LastName*”.
maybe the solution is clear like the sunny day but I'm stucked like hell
thanks for your help!
I have bloody dirty database which I'm trying to clean up. It is basically reference management database I created by export of my references from EndNote.
My issue is that AUTHORS Field (which is temporary until I do cleanup) is string of concatenated authors with “;”as separator. It is easy to use VBA to split this field into separate strings based on separator. However I realized I'm stucked with next step. In Excel I created table of all authors and imported this table as tblAuthors into my database. And now I would like to analyze my unstringed authors one by one against this table like:
string: Brown, A.D. … is there any “Brown” in tblAuthors.LastName?
it is easy to do search for Brown in tblAuthors.LastName with my string (if I would be able to extract only last name, what would be quite difficult). However I would need something like “reverse query” where I can compare this one string to every possible LastName in tblAuthors. Like: “WHERE strAuthor Like *tblAuthors.LastName*”.
maybe the solution is clear like the sunny day but I'm stucked like hell
