Link to home
Start Free TrialLog in
Avatar of twallin
twallinFlag for United States of America

asked on

Word 2007

Is there a way to create choosable footers for the first page in a document?
Avatar of Aaron Tomosky
Aaron Tomosky
Flag of United States of America image

When you make a footer you can do first, last, all, odd, even, etc...
Avatar of twallin

ASKER

Thanks. I got that one. What I am asking is can there be multiple selections on the first page only?
Avatar of TinTombStone
TinTombStone

Not sure what you mean by 'multiple selections'

I don't think that you can save footers into the footer gallery that are customised as first page only

You could create a macros to do the same thing, then stick it on the QAT

Something like:

Sub AddFirstPageFooter()
   
    ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
    Application.ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True
    ActiveWindow.ActivePane.View.SeekView = wdSeekFirstPageFooter

    Selection.TypeText Text:="Your first page footer text or fields here"
    ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
End Sub
Avatar of twallin

ASKER

TinTombStone:
OK. Help. What is QAT. And can you point me in the direction of creating and using macroes?
ASKER CERTIFIED SOLUTION
Avatar of TinTombStone
TinTombStone

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of twallin

ASKER

Requires learning and work