I am trying to copy down 29 lines repetitively until I reach a center cell. However I can not seem to get the lines to continue copying past the initial paste.
How do I make this loop so it will continue to the last cell desired?
Sub Copy()
Dim rng As Range
Set rng = Range("b2:b29")
For Each row In rng.Rows
For Each cell In row.Cells
rng.Select
Selection.Copy
Next cell
Range("B30:B300").Select
ActiveSheet.Paste
Next
End Sub
Thank you.
How do I make this loop so it will continue to the last cell desired?
Sub Copy()
Dim rng As Range
Set rng = Range("b2:b29")
For Each row In rng.Rows
For Each cell In row.Cells
rng.Select
Selection.Copy
Next cell
Range("B30:B300").Select
ActiveSheet.Paste
Next
End Sub
Thank you.