Give this a try:
Sub CopyData()
Dim i As Integer
i = 4
i = i + 1
For i = 4 To 7
With Sheets("Sheet1")
.Cells(i, 1).Copy Destination:=Sheets("Sheet1").Range("N" & Rows.Count).End(xlUp).Offset(1, -2)
.Cells(i, 2).Copy Destination:=Sheets("Sheet1").Range("N" & Rows.Count).End(xlUp).Offset(1, -1)
.Cells(i, 3).Copy Destination:=Sheets("Sheet1").Range("N" & Rows.Count).End(xlUp).Offset(1)
End With
Next
For i = 4 To 7
With Sheets("sheet1")
.Cells(i, 1).Value = ""
.Cells(i, 2).Value = ""
.Cells(i, 3).Value = ""
End With
Next
End Sub
Bookmarks