Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a worksheet with multiple tabs. Each of these tabs is a project and
some are more than 1 page. I'd like to get the rows to repeat on the additional pages of these reports. Currently, when I "Select All Sheets" the option to select "Rows to repeat at top" is greyed out. How can I format this to get the rows to repeat when their are multiple pages? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Do it one worksheet at a time.
Nancy T. wrote: I have a worksheet with multiple tabs. Each of these tabs is a project and some are more than 1 page. I'd like to get the rows to repeat on the additional pages of these reports. Currently, when I "Select All Sheets" the option to select "Rows to repeat at top" is greyed out. How can I format this to get the rows to repeat when their are multiple pages? -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nancy
As you have found out, you cannot do this with "grouped" sheets. You need a macro. Sub repeat_at_top() Dim ws As Worksheet For Each ws In ActiveWorkbook.Worksheets With ws.PageSetup .PrintTitleRows = "$1:$3" .PrintTitleColumns = "" End With Next ws End Sub If not familiar with VBA and macros, see David McRitchie's site for more on "getting started". http://www.mvps.org/dmcritchie/excel/getstarted.htm In the meantime.......... First...create a backup copy of your original workbook. To create a General Module, hit ALT + F11 to open the Visual Basic Editor. Hit CRTL + R to open Project Explorer. Find your workbook/project and select it. Right-click and InsertModule. Paste the code in there. Save the workbook and hit ALT + Q to return to your workbook. Run the macro by going to ToolMacroMacros. You can also assign this macro to a button or a shortcut key combo Gord Dibben MS Excel MVP On Fri, 13 Jan 2006 08:21:03 -0800, "Nancy T." wrote: I have a worksheet with multiple tabs. Each of these tabs is a project and some are more than 1 page. I'd like to get the rows to repeat on the additional pages of these reports. Currently, when I "Select All Sheets" the option to select "Rows to repeat at top" is greyed out. How can I format this to get the rows to repeat when their are multiple pages? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
rows 1-2 missing from excel worksheet | Excel Worksheet Functions | |||
copy rows meeting criteria to another worksheet | Excel Worksheet Functions | |||
Excel should let me format worksheet tabs in multiple rows. | Excel Worksheet Functions | |||
Excel should allow me to repeat bottom rows on every page. | Excel Worksheet Functions | |||
How to print a worksheet but number the pages by workbook | Excel Discussion (Misc queries) |