You will need to play around with the following code to copy other ranges to the next empty row on Sheet2, but it will do what you requested:
Code:
Sub Macro1()
Dim LastRow As Integer
LastRow = Sheet2.Range("A1").End(xlDown).Row
Sheet1.Range("a4:j4").Copy Destination:= _
Sheet2.Range("A" & LastRow + 1)
End Sub
If you want to be able to copy the actual selected range to the next empty row on Sheet2 then replace Sheet1.Range("a4:j4".Copy with Selection.Copy
Hope this helps!!!
If you can't be "The Best", be the best at what you can!!!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.