I would really suggest that you create a template that already contains the
field to return the path and filename in the footer.
Otherwise, create a macro named AutoNew() that contains the following code:
Dim Msg, Style, Title, Response, MyString
Msg = "Do you want to include the file and pathname in the footer of the
document?" ' Define message.
Style = vbYesNo + vbQuestion + vbDefaultButton1 ' Define buttons.
Title = "File and Pathname" ' Define title.
Response = MsgBox(Msg, Style, Title)
If Response = vbYes Then ' User chose Yes.
With ActiveDocument
.Fields.Add
Range:=.Sections(1).Footers(wdHeaderFooterPrimary).Range, _
Type:=wdFieldFileName, Text:="\p"
End With
End If
Probably best if that is created in a template that you save in the Word
Startup folder so that it is loaded as an addin.

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
> In our organization we are often finding documents in the physical
> files and wondering where the software version is. So what we want to
[quoted text clipped - 22 lines]
>
> Regards
steve - 12 Nov 2007 16:19 GMT
Thank you for your advice.
I was told by others that putting the footer in the template by
default was bad. This was because programs that may expect nothing in
the footer, like makeing a sheet of labels etc can screw up. Have you
heard of this? Would this be a reason not to put it into the footer of
the default normal.dot template.
Regards
Doug Robbins - Word MVP - 12 Nov 2007 19:40 GMT
Perhaps I should have said "create a NEW template...." The NEW was implied.

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
> Thank you for your advice.
>
[quoted text clipped - 5 lines]
>
> Regards
steve - 12 Nov 2007 20:12 GMT