Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a multiple page workbook and would like to have the same footer appear
on each worksheet within the workbook. Is there any way to do that without creating the footer on each sheet? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put something like this in your Worksheet_BeforePrint Event. You can read
about workbook events here. http://www.mvps.org/dmcritchie/excel/event.htm Sub Workbook_BeforePrint(Cancel As Boolean) Application.ScreenUpdating = False With ActiveSheet.PageSetup .LeftHeader = "" .CenterHeader = "Proprietary" .RightHeader = "" .LeftFooter = "Left Footer" .CenterFooter = "Center Footer" '& Chr(10) & "&P of &N" .RightFooter = "" .CenterHorizontally = True .CenterVertically = False End With Application.ScreenUpdating = True End Sub "Dhilson" wrote: I have a multiple page workbook and would like to have the same footer appear on each worksheet within the workbook. Is there any way to do that without creating the footer on each sheet? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Group the sheets before you apply the footer (select the sheets that you
want to be included using either ctrl + mouse or shift + mouse), then ungroup them when you are finished -- Regards, Peo Sjoblom "Dhilson" wrote in message ... I have a multiple page workbook and would like to have the same footer appear on each worksheet within the workbook. Is there any way to do that without creating the footer on each sheet? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I repeat same custom header for entire workbook | Excel Discussion (Misc queries) | |||
Give multiple charts on a worksheet/workbook same header or footer | Excel Discussion (Misc queries) | |||
Give multiple charts on a worksheet/workbook same header or footer | Charts and Charting in Excel | |||
How do I make the custom headers and footer repeat on every works. | Excel Worksheet Functions | |||
Share Excel worksheet custom header/footer throughout workbook. | Excel Worksheet Functions |