Why not?
If you set a template document and use.
Dim AppWord As Word.Application
Dim WordDoc As Word.Document
Set AppWord = CreateObject("Word.Application")
AppWord.Visible = True
Set WordDoc = AppWord.Documents.Add("C:\Some\File\Path\FileName.dotx")
If you use .Add you open a new document with the header and document looking as you wish.
If you use .Open then you open the new document file but if its a template you will be asked where to have it saved and so on. If its a document docx then you'll over write the document when you save it.
Bookmarks