Hello,

I have done this before but I lost my notes... How do you assign a variable
to a Word document when you open it? I thought the following codes would be
enough but it gives me the "type mismatch" error. Thanks for you help!

Sub xyz()

Dim WordApp As Word.Application
Dim LetterTemplate As Word.Document

Set WordApp = New Word.Application
WordApp.Visible = True
Set LetterTemplate = WordApp.Documents.Open(Filename:="Blah Blah Blah",
ReadOnly:=True)

End sub