babysophia,
If you have a document template, then you should be opening a document based on that template, rather than opening the template itself. This VBA code will do that;
Code:
Documents.Add Template:= _
"C:\Program Files\DAS\Report.dot", _
NewTemplate:=False, DocumentType:=0
That should create your unsaved "Document1". If you want to automatically save that file, I would use dglienna's suggestion of recording a new macro and looking at / modifying the VBA code to suit your needs. To do THAT;
1. Open Word and go to Tools --> Macro --> Record new macro. Note the Macro name (or change it to something meaningful) and click OK... You're now recording everything you do.
2. Perform whatever actions you want. For example, open your template, (or better, create a new document based on your template), do your "Save As...", etc.
3. Click the "Stop Recording" button from the toolbar.
4. Finally, open the macro by going to Tools --> Macro --> Macros..., click the macro name, and click the Edit button, and there you have the VBA code behind the actions you took in step 2.