If you want to insert a date in the form of a field that can be updated,
then you would have to insert an actual date field by using:
ActiveDocument.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty,
Text:="Date \@ " & Chr(34) & "M/d/yy" & Chr(34), PreserveFormatting:=False
If you just want to insert the current date in that format, then use
strFtrInfo = DocNum & "." & DocVer & " \ " & CNumMat & Format(Date,
"M/d/yy")

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
> Hi,
>
[quoted text clipped - 17 lines]
> Thank you for your help.
> Kerri
Kerri - 04 Apr 2007 18:14 GMT
Doug,
Thank you for responding. I was affraid of that. My other thought was
to make the date in the specific format as an autotext and pull it in
to the variable? I'll test them out.
Thank you for your time and help!
Kerri
On Apr 4, 12:19 am, "Doug Robbins - Word MVP"
<d...@REMOVECAPSmvps.org> wrote:
> If you want to insert a date in the form of a field that can be updated,
> then you would have to insert an actual date field by using:
[quoted text clipped - 37 lines]
>
> - Show quoted text -