Excel Template

  • Thread starter Thread starter VickyC
  • Start date Start date
V

VickyC

Good Afternoon,

Sorry but I am a little new to templates in Excel.

I have created a template, which I would like to add to a toolbar,
which I thought I had done although when I click on it, it opens the
the actual template where as I want it to open a version of it?

Please can anyone help with how I can do this??

Thanks,
 
It sounds like you're opening the template file.

You could add a parameter to that .open command:
Workbooks.Open Filename:="C:\my documents\excel\book1.xlt", editable:=False

or you could just use .add
workbooks.Add template:="c:\my documents\excel\book1.xlt"
 

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