What I would do is have a {docvariable varname} field in the document, then
I would use code to set the variable to the required date and update the
fields in the document.
If the document is a template, which I would recommend that it should be,
then the code would be in a macro named autonew() in that template. If it
is in the document itself, which I do not recommend as you will get a macro
warning message when you open the document if the security level is set to
medium (the minimum recommended) or, if you have it set to high, the code
will just be ignored.
In either case, the code is the same:
With ActiveDocument
.Variables("vMonth") = Format(DateAdd("d", 3, Date), "MMMM")
.Variables("vDay") = Format(DateAdd("d", 3, Date), "d")
.Fields.Update
End With
and in the document, you would have the following fields where you want the
date to appear
{ docvariable vmonth } { docvariable vday \* ordinal }
You must use Ctrl+F9 to insert each pair of field delimiters and Alt+F9 to
toggle off their display.

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Hello,
> Currently, in the file the date is: August 1st
[quoted text clipped - 38 lines]
>>>
>>> Charles L. Phillips
Charles Phillips - 08 Aug 2006 19:30 GMT
Hello,
This is what I was looking for, but couldn't find ANY kind of reference
material(s).
Thank you,
Charles L. Phillips
> What I would do is have a {docvariable varname} field in the document,
> then I would use code to set the variable to the required date and update
[quoted text clipped - 66 lines]
>>>>
>>>> Charles L. Phillips