+ Reply to Thread
Results 1 to 2 of 2

How to automate custom footer on all tabs

  1. #1
    neal august
    Guest

    How to automate custom footer on all tabs

    When I receive files from others, they typically do not have a footer w/
    basic information like date and file name.
    I want this on all my files and further want to customize the font size and
    usually want the path name of where I store file in the custom footer.
    When I receive a mutli tab files, I am having to manually 'setup- custom
    footer- add info- change font...' to each tab.
    I want to apply the settings to all tabs- or even better- just automate the
    whole process- to not even have to go into setup, custom footer dialog. Just
    apply some saved custom footer I have to all tabs of the received file.
    For my own created files, this is easy w/ saved default template- but for
    received files- How?
    Excel 2003 11.6202.6204

  2. #2
    Bob Phillips
    Guest

    Re: How to automate custom footer on all tabs

    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    With ActiveSheet.PageSetup
    .LeftFooter = Format(Date, "dd mmm yyyy")
    .RightFooter = ActiveWorkbook.FullName
    End With
    End Sub

    add this code to the ThisWorkbook code module

    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "neal august" <neal [email protected]> wrote in message
    news:[email protected]...
    > When I receive files from others, they typically do not have a footer w/
    > basic information like date and file name.
    > I want this on all my files and further want to customize the font size

    and
    > usually want the path name of where I store file in the custom footer.
    > When I receive a mutli tab files, I am having to manually 'setup- custom
    > footer- add info- change font...' to each tab.
    > I want to apply the settings to all tabs- or even better- just automate

    the
    > whole process- to not even have to go into setup, custom footer dialog.

    Just
    > apply some saved custom footer I have to all tabs of the received file.
    > For my own created files, this is easy w/ saved default template- but for
    > received files- How?
    > Excel 2003 11.6202.6204




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1