Excel VBA Write to xls ?

  • Thread starter Thread starter Adrian
  • Start date Start date
A

Adrian

Hi,

Can an Excel VBA program access (read/write) another excel file ? if
so, how ?


Thanks...
 
Are they both open?

workbooks("Otherfile.xls").Worksheets(1).Range("A1:B5").Value = _
Thisworkbook.Worksheets(3).Range("M11:N15").Value
 
I would like to open multiple xls files, manipulate them, and then save them
as xls files. I have a routine that I need to do on hundreds of files..and
hope not to have to do it by hand. :)

Mike Shick
 

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