VBA Code:
Public Sub CopyRows()
Sheets("Kaline").Select
' TRIED Sheets("Kaline").Range ("A7.c999, f7.f999")
' Find the last row of data
FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
' Loop through each row
For x = 2 To FinalRow
' TRIED Range ("A7:c999, f1:f999")
' TRIED .Cells.Select
Cells(x, 1).Resize(1, 33).Copy
' TRIED Cells.Copy
Sheets("sheet1").Select
NextRow = Cells(Rows.Count, 1).End(xlUp).Row + 1
Cells(NextRow, 1).Select
ActiveSheet.Paste
Sheets("kaline").Select
Next x
End Sub