Hi there, im working on a small project with a friend of mine. We are struggling to copy data from one worksheet to another worksheet.
We want the data so when you click on the button on sheet 1 it will insert the specific data into Sheet 2, and if you press that button again, it will insert under the previous data.
This code works great for transferring data from Sheet1 to Sheet2, However id like it to paste the new data underneath the previous data.
Private Sub CommandButton1_Click()
Sheets("Sheet1").Range("A1:B10").Copy Destination:=Sheets("Sheet2").Range("E1")
Application.CutCopyMode = False
End Sub
Thank you i hope you could help
We want the data so when you click on the button on sheet 1 it will insert the specific data into Sheet 2, and if you press that button again, it will insert under the previous data.
This code works great for transferring data from Sheet1 to Sheet2, However id like it to paste the new data underneath the previous data.
Private Sub CommandButton1_Click()
Sheets("Sheet1").Range("A1:B10").Copy Destination:=Sheets("Sheet2").Range("E1")
Application.CutCopyMode = False
End Sub
Thank you i hope you could help