Copy and paste a row

elmnas

Board Regular
Joined
Feb 20, 2015
Messages
206
Hello people,

I need help with a code that copy the first row from the sheet sheetname"test"

and put it on row 1 into the sheetname "Statistics"


Could someone help me?


Thank you in advance
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Maybe:
Code:
Sub CopyRow()
    Sheets("test").Rows(1).Copy Sheets("Statistics").Cells(1, 1)
End Sub
 
Upvote 0
Hi elmnas

have you tried to record what you are trying to do

Code:
Sheets("test").Rows("1:1").Copy
    Sheets("Statistics").Rows("1:1").Select
    ActiveSheet.Paste
 
Upvote 0

Forum statistics

Threads
1,215,379
Messages
6,124,605
Members
449,174
Latest member
ExcelfromGermany

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