'Automatically' is the problem.
To do this the simplest method is to create a new template for this document
and *in that* template save the following macros
Sub AutoNew()
Selection.EndKey Unit:=wdStory
Selection.InsertDateTime DateTimeFormat:="dd/MM/yyyy", _
InsertAsField:=False
Selection.TypeText Text:=vbTab
End Sub
Sub AutoOpen()
Selection.EndKey Unit:=wdStory
Selection.TypeParagraph
Selection.InsertDateTime DateTimeFormat:="dd/MM/yyyy", _
InsertAsField:=False
Selection.TypeText Text:=vbTab
End Sub
This will put the date at the start of a new document followed by a tab.
Every time the saved document so created is opened it will add a new line
and put the date followed by a tab. Change the date masks to whatever you
require.
http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site
www.gmayor.com
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>