Can someone please help me copy and paste a user defined range. I have the below but for some reason am getting an error when trying to perform the action. I suspect I am missing one tiny change. Thanks.
Sheets("Sheets1").Select
Dim lngLastRow2 As Long
lngLastRow2 = Cells(Rows.Count, "A").End(xlUp).Row
Worksheets("Sheets2").Range("A3:A" & lngLastRow).Copy _
Destination:=ActiveSheet.Range(lngLastRow2)