Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
Word 2003 would automatically enter the file name and path of a new Word
document created from my template in my footer as desired. Word 2007 does not do this. I must manually enter the new file name and path information from a Quick Parts command each time I create a new Word document. Is there anyway to make Word 2007 automatically enter the file name and path? |
#2
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
If Word 2003 did this, it was because you had put the FILENAME \p field in
the footer of Normal.dot. It is not recommended that you add *anything* to the header or footer of Normal.dot or Normal.dotm because it messes up labels (and even envelopes). You can, however, make this easier in your documents by downloading the "filename and path building block" from http://office.microsoft.com/en-us/te...002951033.aspx. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA http://word.mvps.org "vpr" wrote in message ... Word 2003 would automatically enter the file name and path of a new Word document created from my template in my footer as desired. Word 2007 does not do this. I must manually enter the new file name and path information from a Quick Parts command each time I create a new Word document. Is there anyway to make Word 2007 automatically enter the file name and path? |
#3
![]()
Posted to microsoft.public.word.docmanagement
|
|||
|
|||
![]()
I tend to use a macro to add the filename at the end of the document. Add it
to a QAT button http://www.gmayor.com/installing_macro.htm Sub InsertFileNameAtEnd() With ActiveDocument If Len(.Path) = 0 Then .Save If InStr(1, .Range.Paragraphs.Last.Range.Text, _ ".doc") = False Then .Range.InsertAfter vbCr & .FullName With .Range.Paragraphs.Last.Range .Paragraphs.Alignment = _ wdAlignParagraphRight .Font.name = "Arial" .Font.Size = 8 End With Else .Range.Paragraphs.Last.Range.Text = _ .FullName End If End With End Sub -- Graham Mayor - Word MVP My web site www.gmayor.com Word MVP web site http://word.mvps.org vpr wrote: Word 2003 would automatically enter the file name and path of a new Word document created from my template in my footer as desired. Word 2007 does not do this. I must manually enter the new file name and path information from a Quick Parts command each time I create a new Word document. Is there anyway to make Word 2007 automatically enter the file name and path? |
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Header/Footer commands grayed out/footer unavailable. | Microsoft Word Help | |||
Building Block Question--Footer vs Custom Footer | Microsoft Word Help | |||
Sizing even page footer affects odd footer size | Page Layout | |||
Cannot delete footer/footer box | Microsoft Word Help | |||
Word 2000 - Hyperlinks in footer to TOC with out edit of footer | Microsoft Word Help |