Title says a nice brief summary.
I'm using a VBA Macro
It's for a party this Friday and some people entered their name in the wrong place.
I have two sheets, let's call them SourceSheet and DestinationSheet.
SourceSheet has 2 columns with the same information, I want to make them into one and put them in 1 column on DestinationSheet.
Example SourceSheet:
[TABLE="width: 100"]
<tbody>[TR]
[TD]Sam[/TD]
[TD]Sam[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Max[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Linda[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
What I want DestinationSheet to look like (I dont't believe I have any double-blanks however):
[TABLE="width: 100"]
<tbody>[TR]
[TD]Sam[/TD]
[/TR]
[TR]
[TD]Max[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Linda[/TD]
[/TR]
</tbody>[/TABLE]
Except it are a few hundreds of names, so the use of a range would be nice, comments a huge plus too.
I would love to understand how it works.
Since I want to use this sheet for the next party I'm giving a macro would be good.
And I believe the cells aren't "blank blank" since I gave them the 'cell.value= "" '
I have tried plenty and searched for 2 days now, can't find anything close.
So go wild, go nuts. If you need to use columns as palceholders go ahead since I couldn't even figure it out when I got them all on one sheet.
Questions are welcome, any help would be appreciated.
I'm going to continue googling to solve the problem, and will of course report back if I find it before anyone else.
Thanks advance!
I'm using a VBA Macro
It's for a party this Friday and some people entered their name in the wrong place.
I have two sheets, let's call them SourceSheet and DestinationSheet.
SourceSheet has 2 columns with the same information, I want to make them into one and put them in 1 column on DestinationSheet.
Example SourceSheet:
[TABLE="width: 100"]
<tbody>[TR]
[TD]Sam[/TD]
[TD]Sam[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]Max[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Linda[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
What I want DestinationSheet to look like (I dont't believe I have any double-blanks however):
[TABLE="width: 100"]
<tbody>[TR]
[TD]Sam[/TD]
[/TR]
[TR]
[TD]Max[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]Linda[/TD]
[/TR]
</tbody>[/TABLE]
Except it are a few hundreds of names, so the use of a range would be nice, comments a huge plus too.
I would love to understand how it works.
Since I want to use this sheet for the next party I'm giving a macro would be good.
And I believe the cells aren't "blank blank" since I gave them the 'cell.value= "" '
I have tried plenty and searched for 2 days now, can't find anything close.
So go wild, go nuts. If you need to use columns as palceholders go ahead since I couldn't even figure it out when I got them all on one sheet.
Questions are welcome, any help would be appreciated.
I'm going to continue googling to solve the problem, and will of course report back if I find it before anyone else.
Thanks advance!
Last edited: