To create a new document based on a template, you need code such as the following:
Code:
Sub CreateNewDocBasedOnTemplate()
Documents.Add "full path to template here"
End Sub
If you are trying to create a new, blank document, you can leave out the full path and just use
Documents.Add.