Destination:=.Cells(.Rows.Count, "A").End(xlUp).Row + 1
Try this
Dim lngLastRow As Long
With Worksheets("Ind Templates")
lngLastRow = .Cells(.Rows.Count, "A").End(xlUp).Row + 1
..Range("A1:f13").Copy Destination:=.Range("a" & lngLastRow)
End With
If this post helps click Yes
---------------
Jacob Skaria
"J.W. Aldridge" wrote:
Need to duplicate code but change destination.
' THIS WORKS
With Worksheets("Ind Templates")
.Range("A1:f13").Copy _
Destination:=Sh.Range("a1")
End With
I need destination to be the row below the last row used in A.
I tried this, but didnt work.
Destination:=.Cells(.Rows.Count, "A").End(xlUp).Row + 1
|