Selecting Multiple columns with multiple rows

  • Thread starter Thread starter BillR
  • Start date Start date
B

BillR

I am trying to do something like this:
for row=3 to 17
select columns A:F, row
copy selection
select another range on another worksheet
paste what I copied too that range.
next row

I have been able to select one colun at a time, but can't select the whole
range from A to F on the row I am on.
Thanks.
 
I think I mislead you with the description of the problem. On sheet1 I want
to go from rows 3 to 17 one at a time. If cell D on that row is greater than
0, I want to copy A:F and paste it to A2 on sheet2. Then I want to insert a
row on sheet2 to make room for the next copy.
Then go back to sheet1 and use the next row to do it all over again until I
get row 17 copied if D17 is greater than 0.
Thanks for the help.
 
The original intent was to provide a place to paste all the stuff I had
copied. The code yo gave me works without any row adding. Thanks for the help
and rapid response.
 
Back
Top