Header text only on page 1?

R

rpgs rock dvds

I'm using Word 2007. I've got a long document, and I'd like to have a
small line of small font text at the very top of page 1 only saying:
Document last updated: xx/xx/xxxx. Is it possible to have this "page
header text" only appear on page 1? Thanks a lot for any advice.
 
G

Graham Mayor

You could use the savedate field. However most fields do not update
automatically and if you updated the savedate field after saving to display
its revised content, the document would need to be saved again ad infinitum.

It should however show the correct date the next time the document is
opened.

You could work around this anomaly with a couple of macros in the document
template, then replace the field in the document with the docvariable field
{ DocVariable varSaveDate }. The macros update a document variable with the
current date before saving. You can change the date formatting switches
"dd/MM/yyyy" to suit your local preference.

As you only want this on page one, you can either insert it in the first
page header thus: Document last updated {DocVariable varSaveDate}
or
you can conditionally insert it in the document header thus: {IF {Page} = 1
"Document last updated {DocVariable varSaveDate}"}

Use CTRL+F9 for each pair of brackets {}

http://www.gmayor.com/installing_macro.htm

Sub FileSave()
Dim oVars As Variables
Dim oField As Field
Set oVars = ActiveDocument.Variables
oVars("varSaveDate").Value = Format(Date, "dd/MM/yyyy")
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldDocVariable Then
oField.Update
End If
Next oField
On Error Resume Next
ActiveDocument.Save
ActiveWindow.Caption = ActiveDocument.FullName
End Sub

and

Sub FileSaveAs()
Dim oVars As Variables
Dim oField As Field
Set oVars = ActiveDocument.Variables
oVars("varSaveDate").Value = Format(Date, "dd/MM/yyyy")
For Each oField In ActiveDocument.Fields
If oField.Type = wdFieldDocVariable Then
oField.Update
End If
Next oField
On Error Resume Next
Dialogs(wdDialogFileSaveAs).Show
ActiveWindow.Caption = ActiveDocument.FullName
End Sub


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
S

Suzanne S. Barnhill

On the contextual Header & Footer Tools | Design tab, in the Options group,
check the box for "Different first page." This will give you a separate
First Page Header and First Page Footer. In the First Page Header, put any
text you want to appear only on the first page. I would be more inclined to
put an update date in the First Page Footer, however. Note that, using this
option, you will need to repeat in the First Page Header/Footer any
Header/Footer text that you want on the first page.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
 
R

rpgs rock dvds

I'm using Word 2007.  I've got a long document, and I'd like to have a
small line of small font text at the very top of page 1 only saying:
Document last updated: xx/xx/xxxx.  Is it possible to have this "page
header text" only appear on page 1?  Thanks a lot for any advice.

Thanks a lot for the advice - I'll try it out this Fri when I'm back
on my main machine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top