I have a piece of code that opens a Word Document prints it then closes it. Set WordObj = CreateObject("Word.Application") WordObj.Documents.Open bob WordObj.PrintOut Background:=False WordObj.Quit False Set WordObj = Nothing There is a date field that is embedded in the document. When the...