Copy One Row Multiple Times

a2wolverine

New Member
Joined
Mar 9, 2011
Messages
1
Can someone help? Is there a way to part of one row in a worksheet to all the rows in another worksheet?

<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
Worksheet 1 Columns A thru J
Row 1 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active

<o:p></o:p>
<o:p></o:p>
Worksheet 2 Columns E thru N<o:p></o:p>
Row 1 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active
Row 2 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active
Row 3 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active
Row 4 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active
Row 5 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active
Row 6 John Smith 12/1/2000 Chicago ILLINOIS Sunday Active

<o:p></o:p>
Worksheet 2 has existing info in Columns A-D. I would need to stop the paste at the last row that already has information .

<o:p></o:p>
Any help with this would be appreciated.
<o:p></o:p>
Thanks
 
Last edited:

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
Perhaps along the lines of:

Code:
Dim rngCopy As Range
Set rngCopy = Sheets("Sheet1").Range("A1:J1")
With Sheets("Sheet2")
    .Range(.Cells(1,"D"),.Cells(.Rows.Count,"D").End(xlUp)).Offset(,1).Resize(,rngCopy.Columns.Count).Value = rngCopy.Value    
End With
Set rngCopy = Nothing
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

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