I found this in the help section and pasted it in to my Before Print macro, but it doesn't work.

[VBA]Private Sub appWord_DocumentBeforePrint(ByVal Doc As Document, Cancel As Boolean)
If ActiveDocument.Bookmarks.Exists("Date") = True Then
If ActiveDocument.Bookmarks("Date").Empty = True Then _
MsgBox "You must enter the date."
End If
End Sub[/VBA]

Is there a problem with doing this before Print? Any ideas?

Thanks again.