I’m having a problem mass concatenating two columns of data, and not sure how to go about it. I am not that proficient with excel, so anyone who could lend any actionable insights that would be great.
Basically I have two columns of data, one is a column with types of services, the other is a column with geo-modifiers. Example:
_____A______ _________________B_________________
Geo-modifier Service
New York search engine optimization
Los Angeles seo services
Chicago seo optimization
Houston seo marketing
Philadelphia seo service
Phoenix best seo
San Antonio search optimization
San Diego search engine optimization services
So what I am trying to do with concatenate is append the geo modifier to all the service words. For example:
_________________C_________________
new york search engine optimization
new york seo services
new york seo optimization
etc
then when it reaches to the bottom of the services list it would go to the next query and concatenate to the bottom of the list again. Example LA search engine optimization, LA seo services, LA seo optimization!
Given the above scenerio how would I do this, in the easiest way possible?
2
Answers
In cell C2 and copied down, adjusted ranges to suit:
Here is a VBA solution to enter into a new Code module: