Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to figure out a way to repeat multiple rows across multiple
worksheets. I understand how to select rows to repeat in one worksheet. Is there a way to repeat rows across worksheets? If so, how? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Caryn
Not too clear on this but are you talking about the "Rows to repeat at top" under the print settings? If so, unfortunately this is one function that is not available with grouped sheets(print range is the other one). 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 you are talking about something else, please clarify. Gord Dibben MS Excel MVP On Wed, 11 Jan 2006 12:37:02 -0800, "CarynBTC" .(donotspam) wrote: I am trying to figure out a way to repeat multiple rows across multiple worksheets. I understand how to select rows to repeat in one worksheet. Is there a way to repeat rows across worksheets? If so, how? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to swap rows and columns? | Excel Discussion (Misc queries) | |||
Automatically inserting rows | Excel Worksheet Functions | |||
Hiding Rows if the linked rows are blank | Excel Discussion (Misc queries) | |||
flexible paste rows function that inserts the right number of rows | Excel Discussion (Misc queries) | |||
Why have I got some repeating rows after a Excel 2003 sort | Excel Discussion (Misc queries) |