Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() How to print heading on everypage for all sheets of a workbook. I grouped all sheets, then went as File-pagesetup-sheet tab, but i see print titles option is disabled, why. But for single sheet it is working. Please suggest how to enable it for *all sheets*. THANKS -- jamex ------------------------------------------------------------------------ jamex's Profile: http://www.excelforum.com/member.php...o&userid=32243 View this thread: http://www.excelforum.com/showthread...hreadid=520432 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't think you can. You'll have to go through each sheet.
jamex wrote: How to print heading on everypage for all sheets of a workbook. I grouped all sheets, then went as File-pagesetup-sheet tab, but i see print titles option is disabled, why. But for single sheet it is working. Please suggest how to enable it for *all sheets*. THANKS -- jamex ------------------------------------------------------------------------ jamex's Profile: http://www.excelforum.com/member.php...o&userid=32243 View this thread: http://www.excelforum.com/showthread...hreadid=520432 -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Excuse the work wrapping, but this should help (adjust to your needs).
Customize the Page Sections (Header/Footer)of a worksheet as desired. Then from this same worksheet - run this macro: Sub change_all_headers() With ActiveSheet LF = .PageSetup.LeftFooter CF = .PageSetup.CenterFooter RF = .PageSetup.RightFooter LH = .PageSetup.LeftHeader CH = .PageSetup.CenterHeader RH = .PageSetup.RightHeader End With For Each sht In Sheets sht.Select ActiveSheet.PageSetup.LeftFooter = LF ActiveSheet.PageSetup.CenterFooter = CF ActiveSheet.PageSetup.RightFooter = RF ActiveSheet.PageSetup.LeftHeader = LH ActiveSheet.PageSetup.CenterHeader = CH ActiveSheet.PageSetup.RightHeader = RH Next sht End Sub Report back, if problems. Remember to back up you r file before trying ANYTHING NEW!! "jamex" wrote in message ... How to print heading on everypage for all sheets of a workbook. I grouped all sheets, then went as File-pagesetup-sheet tab, but i see print titles option is disabled, why. But for single sheet it is working. Please suggest how to enable it for *all sheets*. THANKS -- jamex ------------------------------------------------------------------------ jamex's Profile: http://www.excelforum.com/member.php...o&userid=32243 View this thread: http://www.excelforum.com/showthread...hreadid=520432 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I had the same problem and this sorted it - thanks Jim. -- tonywig ------------------------------------------------------------------------ tonywig's Profile: http://www.excelforum.com/member.php...o&userid=18985 View this thread: http://www.excelforum.com/showthread...hreadid=520432 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
delete column heading for print | Excel Worksheet Functions | |||
Extra Row in Defined Print Area | Excel Discussion (Misc queries) | |||
print first two rows (heading) and one row per page... | Excel Discussion (Misc queries) | |||
print heading row on every page | Excel Discussion (Misc queries) | |||
Printing - Have to set print area 1 column further than necessary | Excel Discussion (Misc queries) |