D
David Macdonald
This copies the range once:
Sheets("Sheet1").Range("B33").Copy Sheets("Sheet3").Rows(8)
This copies the range repeatedly to the end of the row:
Sheets("Sheet1").Range("B3:Q3").Copy Sheets("Sheet3").Rows(8)
Why? Is there a limit of 15 columns?
Sheets("Sheet1").Range("B33").Copy Sheets("Sheet3").Rows(8)
This copies the range repeatedly to the end of the row:
Sheets("Sheet1").Range("B3:Q3").Copy Sheets("Sheet3").Rows(8)
Why? Is there a limit of 15 columns?