Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
dicfor
 
Posts: n/a
Default 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
  #2   Report Post  
Debra Dalgleish
 
Posts: n/a
Default

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   Report Post  
dicfor
 
Posts: n/a
Default

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   Report Post  
Jim May
 
Posts: n/a
Default

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" wrote in message
...
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




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I print a footer on the last page only of an excel doc? CLDelafield Excel Discussion (Misc queries) 12 September 17th 06 04:03 PM
print footer on only one page in excel Dan Connors Excel Discussion (Misc queries) 1 August 3rd 05 09:35 PM
Open excel from htm page den Excel Discussion (Misc queries) 0 April 25th 05 11:58 PM
How to insert a picture in the Footer (not the Header) in Excel 20 jmon Excel Worksheet Functions 2 March 17th 05 05:59 AM
why would page 1 of an excel worksheet print smaller of page 2 if. hisdrama pest Excel Discussion (Misc queries) 1 January 10th 05 07:14 PM


All times are GMT +1. The time now is 05:31 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"