I would suggest that it is a document created from the template that you
would be wanting to save with those two dates.
If the document was to be saved with today's date plus the date two weeks in
advance, the following autonew macro in the template would save any document
created from the template in the default document folder with the file name
of the form 2010-02-22 - 2010-03-08
ActiveDocument.SaveAs Format(Date, "yyyy-mm-dd") & " - " &
Format(DateAdd("d", 14, Date), "yyyy-mm-dd")
If you want the date to be the current date plus the week two weeks prior,
use
ActiveDocument.SaveAs Format(DateAdd("d", -14, Date), "yyyy-mm-dd") & " - "
& Format(Date, "yyyy-mm-dd")
That would give you document saved with the filename of 2010-02-08 -
2010-02-22
--
Hope this helps,
Doug Robbins - Word MVP
Please reply only to the newsgroups unless you wish to obtain my services on
a paid professional basis.