Open XLS as though an XLT - unsaved copy in memory

G

Guest

Using Office 2003 and Windows XP;

Call me lazy; is there a way to open an unsaved copy of a normal XLS in
memory as though it were a template, without having to actually save the XLS
as an XLT?

If this is possible could someone please post generic example VBA or
VBScript to do it?

Thanks much in advance.
 
J

Jon Peltier

Instead of

Workbooks.Open sFileName

use

Workbooks.Add sFileName

the workbook named sFileName will be used as a template, whether or not it
was saved as such.
- Jon
 

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

Top