I don't understand.
This'll copy that sheet1 to a new workbook--there's no template involved (no
workbook template and no worksheet template).
I ceated a excel tempalte the include serveral macro.
I want to be able use
Sheets("sheet1").Copy
But have excel use the template to open the new workbook
>I don't understand.
>
[quoted text clipped - 8 lines]
>>
>> I want to avoid changing everyone default template.
Dave Peterson - 18 Sep 2007 01:51 GMT
Create a new workbook that uses that template.
Copy the worksheet into that workbook.
Dim NewWkbk As Workbook
Dim WksToCopy As Worksheet
Set WksToCopy = ActiveWorkbook.Worksheets("Sheet1")
Set NewWkbk = Workbooks.Add(template:="C:\folder\yourtemplatename.xlt")
WksToCopy.Copy _
before:=NewWkbk.Worksheets(1)
> I ceated a excel tempalte the include serveral macro.
>
[quoted text clipped - 16 lines]
> >>
> >> I want to avoid changing everyone default template.

Signature
Dave Peterson