You can do that manually by selecting the range to copy, then Edit>Copy
---Activate the other workbook, select the anchor cell, then Edit>Paste.
For VBA:
Sub cpyRw1_4()
Set wb1 = ActiveWorkbook.ActiveSheet
Set wb2 = Workbooks(2).Sheets(1)
wb1.Rows("1:4").Copy wb2.Range("A1")
End Sub
Sub
"C Holmes" wrote:
> Hello,
>
> I need to copy rows 1 - 4 from one workbook to another workbook. I wouldn't
> think it would be that difficult, but I can't figure it out. Appreciate any
> help. I'm using Excel 2003.
>
> Thanks.
|