+ Reply to Thread
Results 1 to 4 of 4

How do I get a footnote to give the date Monday, 4 July 2005

Hybrid View

  1. #1
    Victor
    Guest

    How do I get a footnote to give the date Monday, 4 July 2005

    I would like to get Excel to give the date at the bottom of the page for
    example Monday 4, July 2005 and the next day that I print it out it would be
    the 5th and so on.



    Victor William Floyd

  2. #2
    Anne Troy
    Guest

    Re: How do I get a footnote to give the date Monday, 4 July 2005

    Try View-->Header and Footer. Choose Custom Footer. Click in left, center,
    or right, and then hit the Date button. It'll show &[Date]
    *******************
    ~Anne Troy

    www.OfficeArticles.com
    www.MyExpertsOnline.com


    "Victor" <Victor@discussions.microsoft.com> wrote in message
    news:E1C9DAEA-5408-471D-8248-DA247410A7C9@microsoft.com...
    > I would like to get Excel to give the date at the bottom of the page for
    > example Monday 4, July 2005 and the next day that I print it out it would

    be
    > the 5th and so on.
    >
    >
    >
    > Victor William Floyd




  3. #3
    Dave Peterson
    Guest

    Re: How do I get a footnote to give the date Monday, 4 July 2005

    If you really want that format, you'll need a macro to change it.

    Rightclick on the excel icon (to the left of the File option on the worksheet
    menu bar).

    Select view code and paste this code into the code window.

    Option Explicit
    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    Worksheets("Sheet1").PageSetup.LeftFooter _
    = Format(Date, "dddd d, mmmm yyyy")
    End Sub

    Change the name of the sheet (and I used .leftfooter, too).



    Victor wrote:
    >
    > I would like to get Excel to give the date at the bottom of the page for
    > example Monday 4, July 2005 and the next day that I print it out it would be
    > the 5th and so on.
    >
    > Victor William Floyd


    --

    Dave Peterson

  4. #4
    Dave Peterson
    Guest

    Re: How do I get a footnote to give the date Monday, 4 July 2005

    ps.

    If you're new to macros, you may want to read David McRitchie's intro at:
    http://www.mvps.org/dmcritchie/excel/getstarted.htm

    Victor wrote:
    >
    > I would like to get Excel to give the date at the bottom of the page for
    > example Monday 4, July 2005 and the next day that I print it out it would be
    > the 5th and so on.
    >
    > Victor William Floyd


    --

    Dave Peterson

+ 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