To create a new document that uses a specific template, use this:
Sub add() Dim wdApp As Word.Application Set wdApp = GetObject(, "Word.Application") wdApp.Documents.Add Template:="Contemporary Memo.dot" End Sub