Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 20
Default Header/Footer on entire workbook

Does anyone know how to make a header/footer for an entire workbook
instead of having to do it for each sheet?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 109
Default Header/Footer on entire workbook

On May 12, 5:07*pm, tonyalt3 wrote:
Does anyone know how to make a header/footer for an entire workbook
instead of having to do it for each sheet?


If you group the sheets, right click on any sheet tab then click
"select all sheets", then anything you do will impact all the sheets.
After you have entered your header/footer information click a single
sheet to ungroup before you start doing stuff you only wand done on a
single sheet. Otherwise you will cost yourself more time than you
just saved in efficiently entering the header/footer information.

Ken
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Header/Footer on entire workbook

You can group the sheets as the other responder suggest but that will change
all the print settings(except print range and rows to repeat).

To change just the header or footer you can loop through the sheets using
VBA

Example code.

Sub Footer22()
For Each ws In ActiveWorkbook.Sheets
With ws.PageSetup
.LeftFooter = "&""Algerian,Regular""&16" & "This is my Footer"
End With
Next
End Sub

There is all kinds of stuff can be placed into a header or footer using
code.

If you have anything specific, post back with deatils.


Gord Dibben MS Excel MVP

On Tue, 12 May 2009 14:07:58 -0700 (PDT), tonyalt3
wrote:

Does anyone know how to make a header/footer for an entire workbook
instead of having to do it for each sheet?


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
Adding Headers and Footer to an Entire Workbook?? Spyder Excel Discussion (Misc queries) 5 February 25th 10 03:46 PM
Way to insert a footer in an entire workbook w/o altering headers Deb Excel Discussion (Misc queries) 2 April 7th 09 09:13 PM
add same header to entire workbook tracysiscpa Excel Discussion (Misc queries) 3 March 5th 09 12:49 PM
header/footer for the whole workbook Positive Excel Worksheet Functions 2 October 3rd 07 09:31 PM
Can you put the same header/footer on the entire workbook? jackiemac1595 Excel Worksheet Functions 2 October 2nd 06 04:43 PM


All times are GMT +1. The time now is 01:33 AM.

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"