Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi. I need to set the repeat rows/columns option in page
setup for a set of workbooks I am printing. I tried recording a macro to do this but it does not change anything. It did loop through the sheets but no changes were made. There are several page setup settings already so I would like to not have to redo those. And I really only need to select one sheet at a time. My computer at work is slow and likes to crash if I ask very much of it. TIA Todd Sub PrintRows() ' Keyboard Shortcut: Ctrl+u For Each WS In Worksheets With ActiveSheet.PageSetup .PrintTitleRows = "$7:$10" .PrintTitleColumns = "$A:$A" End With ActiveSheet.PageSetup.PrintArea = "" With ActiveSheet.PageSetup .LeftHeader = "" .CenterHeader = "" .RightHeader = "" .LeftFooter = "" .CenterFooter = "" .RightFooter = "" .LeftMargin = Application.InchesToPoints(0.75) .RightMargin = Application.InchesToPoints(0.75) .TopMargin = Application.InchesToPoints(1) .BottomMargin = Application.InchesToPoints(1) .HeaderMargin = Application.InchesToPoints(0.5) .FooterMargin = Application.InchesToPoints(0.5) .PrintHeadings = False .PrintGridlines = False .PrintComments = xlPrintNoComments .PrintQuality = 100 .CenterHorizontally = False .CenterVertically = False .Orientation = xlPortrait .Draft = False .PaperSize = xlPaperLetter .FirstPageNumber = xlAutomatic .Order = xlDownThenOver .BlackAndWhite = True .Zoom = 100 End With Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change print titles (rows to repeat at top) on subsequent pages | Excel Discussion (Misc queries) | |||
macro to repeat non contiguous rows at top in Print | Excel Discussion (Misc queries) | |||
Setting different rows to repeat for print. | Excel Discussion (Misc queries) | |||
How I can print full text bigger than column, in repeat column | Excel Discussion (Misc queries) | |||
Setting up a macro to print? | Excel Worksheet Functions |