I want to copy the data from specific cells from one sheet to another sheet's specific cells.
This is the code I tried
Private Sub CommandButton1_Click()
Sheets("KeyInformation").Select
Range("A2:Q2").Select
Range("A2:Q2").Copy
Sheets("Factsheet").Select
Range("B9:B25").Select
ActiveSheet.Paste
Sheets("Factsheet").Select
End Sub
It copied. How can I paste where I want?
Avoid using select.
if you want only to copy the row in the the new sheet in the same position, you have to declare the position where you want to paste the copied row: