Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is this possible? User has a workbook with multiple sheets already set up.
They want to copy the header and footer from one of the sheets to all other sheets. I'd like to set it up so that it prompts them for the sheet with the h/f to be copied and then asks which other sheet(s) to copy it to. I don't want the actual code (like to struggle through that myself) - just a helpful shove in the right direction. :) Lauri |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Forgot to mention - I'm using version 2000.
"LauriS" wrote: Is this possible? User has a workbook with multiple sheets already set up. They want to copy the header and footer from one of the sheets to all other sheets. I'd like to set it up so that it prompts them for the sheet with the h/f to be copied and then asks which other sheet(s) to copy it to. I don't want the actual code (like to struggle through that myself) - just a helpful shove in the right direction. :) Lauri |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The header and footer is part of the PageSetup. Rather than copy, you could
just use the same PageSetup code for each sheet. This code would put the header on all sheets. You can work from there. For i = 1 To Sheets.Count Sheets(i).PageSetup.CenterHeader = "&"Arial" &12 HeaderText" Next "LauriS" wrote: Forgot to mention - I'm using version 2000. "LauriS" wrote: Is this possible? User has a workbook with multiple sheets already set up. They want to copy the header and footer from one of the sheets to all other sheets. I'd like to set it up so that it prompts them for the sheet with the h/f to be copied and then asks which other sheet(s) to copy it to. I don't want the actual code (like to struggle through that myself) - just a helpful shove in the right direction. :) Lauri |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
can you set up global headers & footers for all sheets in a file? | Excel Discussion (Misc queries) | |||
Headers & Footers | Excel Worksheet Functions | |||
Headers/footers | Excel Worksheet Functions | |||
Can I duplicate headers and footers on multiple sheets? | Excel Worksheet Functions | |||
Headers and Footers | Excel Discussion (Misc queries) |