Repeating Rows

G

Guest

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?
 
G

Gord Dibben

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top