Hello everyone,
I hope you guys can help me with this problem i am having that I need a VBA solution to!
i have 8 worksheets (worksheets 8-15) that I need to be copied over to workheet3 ("RevRel")
the data in all 8 worksheets has the same amount of columns (A:O) starting from A1 but vary in number of rows.
I need a vba solution that starts from sheet 8 copies the data as a value only up until Column A cell is blank and then it moves onto sheet 9 copies the data there etc
and all 8 sheets need to be copied to RevRel with sheet 8 being first, then sheet 9 etc.
example of data start at A1
[TABLE="width: 500"]
<tbody>[TR]
[TD]open[/TD]
[TD]dec 1[/TD]
[TD]andy[/TD]
[TD]checked[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[/TR]
[TR]
[TD]closed[/TD]
[TD]dec 2[/TD]
[TD]dwight[/TD]
[TD]not checked[/TD]
[TD]no[/TD]
[TD][/TD]
[TD]yes[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]open[/TD]
[TD]dec 5[/TD]
[TD]micheal[/TD]
[TD]checked[/TD]
[TD]yes[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD][/TD]
[TD]no[/TD]
[TD][/TD]
[TD][/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[/TR]
[TR]
[TD]closed[/TD]
[TD]dec 10[/TD]
[TD]jim[/TD]
[TD]not checked[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD][/TD]
[TD][/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
columns 5-15 could have yes or no, or could be left blank
i want the macro to find the row that has column A blank as that will never be blank if there is data
the data is linked from different workbooks and has a formula behind it (IF(b8=0, "",b8) so i dont want that to be copied just the value that is outputted.
if you need the sheet names they are
burgundy
charcoal
emerald
magenta
navy
ruby
sapphire
violet
any easy solution to this problem was creating a query and connecting the workbooks which i normally would do but cannot in this case.
please help!!
I hope you guys can help me with this problem i am having that I need a VBA solution to!
i have 8 worksheets (worksheets 8-15) that I need to be copied over to workheet3 ("RevRel")
the data in all 8 worksheets has the same amount of columns (A:O) starting from A1 but vary in number of rows.
I need a vba solution that starts from sheet 8 copies the data as a value only up until Column A cell is blank and then it moves onto sheet 9 copies the data there etc
and all 8 sheets need to be copied to RevRel with sheet 8 being first, then sheet 9 etc.
example of data start at A1
[TABLE="width: 500"]
<tbody>[TR]
[TD]open[/TD]
[TD]dec 1[/TD]
[TD]andy[/TD]
[TD]checked[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[/TR]
[TR]
[TD]closed[/TD]
[TD]dec 2[/TD]
[TD]dwight[/TD]
[TD]not checked[/TD]
[TD]no[/TD]
[TD][/TD]
[TD]yes[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]open[/TD]
[TD]dec 5[/TD]
[TD]micheal[/TD]
[TD]checked[/TD]
[TD]yes[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD][/TD]
[TD]no[/TD]
[TD][/TD]
[TD][/TD]
[TD]no[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[/TR]
[TR]
[TD]closed[/TD]
[TD]dec 10[/TD]
[TD]jim[/TD]
[TD]not checked[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD][/TD]
[TD][/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[TD]no[/TD]
[TD]yes[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
columns 5-15 could have yes or no, or could be left blank
i want the macro to find the row that has column A blank as that will never be blank if there is data
the data is linked from different workbooks and has a formula behind it (IF(b8=0, "",b8) so i dont want that to be copied just the value that is outputted.
if you need the sheet names they are
burgundy
charcoal
emerald
magenta
navy
ruby
sapphire
violet
any easy solution to this problem was creating a query and connecting the workbooks which i normally would do but cannot in this case.
please help!!
Last edited: