Is it possible to have different rows repeat after a couple of pages? Basically I need rows 1-3 repeated on pages 1 & 2 only and then 2 different rows to print on page 3+. I hope this makes sense.
You could use Custom views. (View, Custom View, Add)
First set the print range to include just the first two pages. Set the rows to repeat.
Then save these settings as a custom view.
Then do the same for the remainder of the report, saving as a different Custom View.
Now you can
View, Custom View, Show Print1
print in the normal way,
View, Custom View, Show Print2
print in the normal way.
If you switch on macro recorder you can create a simple macro to automate the printing. Something like this:
Code:
Sub PrintWorksheet()
ActiveWorkbook.CustomViews("print1").Show
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
ActiveWorkbook.CustomViews("print2").Show
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.