Hi, Baj,
please find attached an example of how to copy the values of a range to another sheet. The range is A5:F18, giving 14 rows and 6 columns. This shall be copied to another sheet directly under the last visible and filled cell in Column A. Please change the names to fit. If your range is different from my example please adjust the range and the number of rows and columns in the resize-command acoordingly.
Sub Baj()
Dim wsOr As Worksheet
Dim wsTa As Worksheet
Set wsOr = Sheets("Sheet1")
Set wsTa = Sheets("Sheet2")
With wsTa
.Cells(.Cells(Rows.Count, "A").End(xlUp).Row + 1, "A").Resize(14, 6).Value = _
wsOr.Range("A5:F18").Value
End With
Set wsTa = Nothing
Set wsOr = Nothing
End Sub
Ciao,
Holger
Bookmarks