+ Reply to Thread
Results 1 to 17 of 17

How do I start Excel Footer on 2nd page?

  1. #1
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  2. #2
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  3. #3
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  4. #4
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  5. #5
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  6. #6
    Jim May
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Put this in "ThisWorkbook" Event-code module:

    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    Const sFOOTER As String = "my footer"
    Dim wsSheet As Worksheet
    Cancel = True
    Application.EnableEvents = False
    For Each wsSheet In ActiveWindow.SelectedSheets
    With wsSheet
    .PageSetup.LeftFooter = ""
    .PrintOut from:=1, To:=1
    .PageSetup.LeftFooter = sFOOTER
    .PrintOut from:=2
    End With
    Next wsSheet
    Application.EnableEvents = True
    End Sub


    "Debra Dalgleish" <[email protected]> wrote in message
    news:[email protected]...
    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    >> I recently upgraded MS Office. What happened to capability click on
    >> "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >




  7. #7
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  8. #8
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  9. #9
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  10. #10
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  11. #11
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  12. #12
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  13. #13
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  14. #14
    Jim May
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Put this in "ThisWorkbook" Event-code module:

    Private Sub Workbook_BeforePrint(Cancel As Boolean)
    Const sFOOTER As String = "my footer"
    Dim wsSheet As Worksheet
    Cancel = True
    Application.EnableEvents = False
    For Each wsSheet In ActiveWindow.SelectedSheets
    With wsSheet
    .PageSetup.LeftFooter = ""
    .PrintOut from:=1, To:=1
    .PageSetup.LeftFooter = sFOOTER
    .PrintOut from:=2
    End With
    Next wsSheet
    Application.EnableEvents = True
    End Sub


    "Debra Dalgleish" <[email protected]> wrote in message
    news:[email protected]...
    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    >> I recently upgraded MS Office. What happened to capability click on
    >> "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >




  15. #15
    dicfor
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Thank you Debra. I appreciate your response.

    I wonder if it would not be a simple thing for Miscosoft to enable one to do
    the same thing in Excel that you can do in Word. I hope they will consider
    this possibility.
    --
    all the easy way of doing things have been taken

    dicfor


    "Debra Dalgleish" wrote:

    > Different first page has always been a feature in Word, but not in Excel.
    >
    > In Excel, you could print the first page
    > Then add the footer, and print the remaining pages.
    >
    > dicfor wrote:
    > > I recently upgraded MS Office. What happened to capability click on
    > > "different first page" so I can start footer on 2nd page?

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  16. #16
    Debra Dalgleish
    Guest

    Re: How do I start Excel Footer on 2nd page?

    Different first page has always been a feature in Word, but not in Excel.

    In Excel, you could print the first page
    Then add the footer, and print the remaining pages.

    dicfor wrote:
    > I recently upgraded MS Office. What happened to capability click on
    > "different first page" so I can start footer on 2nd page?



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  17. #17
    dicfor
    Guest

    How do I start Excel Footer on 2nd page?

    I recently upgraded MS Office. What happened to capability click on
    "different first page" so I can start footer on 2nd page?
    --
    all the easy way of doing things have been taken

    dicfor

+ 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