I am trying to take multiple rows and bring them to one row. for example I am trying to take address, City, State, and country and bring them to one column that has them all read. I cant use a concatnation excel formula becasue I need there to be spaces between address city state and country. An example of what my data looks like is below along with what I want my output to looklike after running the VBA. I have tried running the excel formula = A2&B2&C2&D2 however this doesn't allow for approprate spacing. [TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]Address
[/TD]
[TD]City
[/TD]
[TD]State
[/TD]
[TD]Counrty
[/TD]
[TD]Combined (Output I am looking for)
[/TD]
[/TR]
[TR]
[TD]240 new Byhalia Rd
[/TD]
[TD]Memphis
[/TD]
[TD]Tennessee
[/TD]
[TD]United States
[/TD]
[TD]240 new Byhalia Rd Memphis Tennesse
[/TD]
[/TR]
</tbody>[/TABLE]
<tbody>[TR]
[TD]Address
[/TD]
[TD]City
[/TD]
[TD]State
[/TD]
[TD]Counrty
[/TD]
[TD]Combined (Output I am looking for)
[/TD]
[/TR]
[TR]
[TD]240 new Byhalia Rd
[/TD]
[TD]Memphis
[/TD]
[TD]Tennessee
[/TD]
[TD]United States
[/TD]
[TD]240 new Byhalia Rd Memphis Tennesse
[/TD]
[/TR]
</tbody>[/TABLE]