remove field in footer

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to write a macro that will remove a file name filed from an even
page footer. this is as for as I can get:
ActiveWindow.View.SeekView = wdSeekEvenPagesFooter
What should I do after this?
 
It would be simpler to change the footers to different odd/even page in page
setup and remove the content of the even page footer.
In any case you will have to do this as removing a continuous footer from
any page will remove it from all pages. Another workaround would be to
Change the footer to a collection of fields. If you want to put the footer
only on odd pages then put your footer in the place indicated and remove the
even page footer text from the field.

{ IF{ =MOD({ Page },2) } ="1" "Odd Page Footer content" "Even Page Footer
content" }


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

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top