copying an array from workbook a to workbook b

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Can someone please tell me how I can copy an Array from workbook a to
workbook b?
Say, there is an array(0..10) named items in workbook1.sheet1 I need to
copy that to workbook2.sheet1.

Thanks,
 
workbooks("Workbook1.xls").Worksheets("Sheet1") _
.Range("A1:A10").Copy Workbooks("Workbook2.xls") _
.Worksheets("Sheet1").Range("A1")

That is my best guess of what you are asking
array(0..10) named items

doesn't describe anything meaninful to me.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top