Automated Excel, Fill from other file & save (html)

  • Thread starter Thread starter Tom Robertson
  • Start date Start date
T

Tom Robertson

Is it possible to create an Excel file which will
automatically fill cells with results from other cells of
another excel file.

Is it possible to automate this, as well as automate
saving the file as a webpage?

A macro?

Reards,

Tom
 
Depends on what you mean by: "automatically fill"

You could open the second workbook and copy the data from one worksheet and
paste into the original worksheet.

You could fill the cells of the original worksheet with formulas that point back
to that first workbook/worksheet.

=IF('C:\My Documents\excel\[book2.xls]Sheet1'!A1="","",
'C:\My Documents\excel\[book2.xls]Sheet1'!A1)

And fill up that worksheet with similar formulas.

======
And if you record a macro when you save the file the way you want (.html??),
you'll be closer to to done.
 

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