Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I print a footer on the last page only of an excel doc? | Excel Discussion (Misc queries) | |||
print footer on only one page in excel | Excel Discussion (Misc queries) | |||
Open excel from htm page | Excel Discussion (Misc queries) | |||
How to insert a picture in the Footer (not the Header) in Excel 20 | Excel Worksheet Functions | |||
why would page 1 of an excel worksheet print smaller of page 2 if. | Excel Discussion (Misc queries) |