You will want to use the .Add
method instead of .Open
and specify the Template
argument.
Set WordDoc = WordApp.Documents.Add(Template:=File)
Keep in mind this new document will not have a filename when it is created.
https://docs.microsoft.com/en-us/office/vba/api/word.documents.add
CLICK HERE to find out more related problems solutions.