Copy data from one worksheet to another worksheet using a button

Whitena

New Member
Joined
Apr 17, 2014
Messages
5
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
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try

Code:
Private Sub CommandButton1_Click()
Sheets("Sheet1").Range("A1:B10").Copy Destination:=Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1)
Application.CutCopyMode = False
End Sub
 
Upvote 0
Hi is it possible i could transfer certain cells, For instance. If i wanted to transfer cells B2, B3, B4, B5, C2, C3, C4, C5, D2, D3, D4, D5.
Also when i transfer data i dont want the format to follow only the data.

Thanks
 
Upvote 0
Maybe like this

Code:
Private Sub CommandButton1_Click()
Sheets("Sheet1").Range("B2,B3,B4,B5,C2,C3,C4,C5,D2,D3,D4,D5").Copy
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
 
Upvote 0
Says to debug Line 2, which i cant see anything wrong with :/

Private Sub CommandButton2_Click()
Sheets("Sheet1").Range("B2,B3,B4,B5,C2,C3,C4,C5,D2,D3,D4,D5").Copy
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
End Sub
 
Upvote 0
I dont think my question was clear. sorry my fault it does work. What i mean in my question was say if i had a Range of cells from A1-C10. However i only wanted to paste certain cells such as A5,B7,C8.

Hopefully that makes more sense, sorry for annoying you like this.
 
Upvote 0
Try like this

Code:
Private Sub CommandButton2_Click()
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("B2").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("B3").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("B4").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("B5").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("C2").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("C3").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("C4").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("C5").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("D2").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("D3").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("D4").Value
Sheets("Sheet2").Range("E" & Rows.Count).End(xlUp).Offset(1).Value = Sheets("Sheet1").Range("D5").Value
End Sub
 
Upvote 0
Thank you very much, I am so grateful for your time, i cant thank you enough. Works a treat, now onto the next tasks, wish me luck. Again Thank you VoG
 
Upvote 0

Forum statistics

Threads
1,216,108
Messages
6,128,872
Members
449,475
Latest member
Parik11

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top