At present I have the code located below (working).
Sub Copy_Ten()
Dim X As Long, LastRow As Long
Dim CopyRange As Range
LastRow = Cells(Cells.Rows.Count, "A").End(xlUp).Row
For X = 1 To LastRow Step 4
If CopyRange Is Nothing Then
Set CopyRange = Rows(X).EntireRow
Else
Set CopyRange = Union(CopyRange, Rows(X).EntireRow)
End If
Next
If Not CopyRange Is Nothing Then
CopyRange.Copy Destination:=Sheets("Sheet2").Range("A1")
End If
End Sub
It funcations well..... however on sheet 2 it always sarts at A1. I would like it to look for the next space and continue on..
The code I have would be Range("A1").End(xldown).Select however I am not sure the place where to put it.
So ultimately sheet 2 would never, after the first time start from A1.... as there would be a growing list.
Thank you