Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to repeat the same rows (Rows 1 to 3) from a worksheet say
Sheet1 when printing any sheet of the workbook. When I try to do that I cannot select multiple sheet at the same time. I also tried to select all the sheets and then try with the printing command. This also didn't work. It appears that this is a sheet only property. Is there a way around. Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You need VBA to achieve this.
Sub test() Dim ws As Worksheet For Each ws In ActiveWorkbook.Sheets 'For Each ws In ActiveWindow.SelectedSheets If ws.Type = xlWorksheet Then ws.PageSetup.PrintTitleRows = "$1:$3" End If Next End Sub NOTE: this will select rows 1:3 of each Sheet, not rows 1:3 of Sheet1 I want to repeat the same rows (Rows 1 to 3) from a worksheet say Sheet1 when printing any sheet If you wanted 1:3 of Sheet1 to print on other sheets you would have to copy those rows to each sheet. Gord Dibben MS Excel MVP On Sun, 26 Jun 2011 05:06:32 -0700 (PDT), Subodh wrote: of the workbook. When I try to do that I cannot select multiple sheet at the same time. I also tried to select all the sheets and then try with the printing command. This also didn't work. It appears that this is a sheet only property. Is there a way around. Thanks in advance. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do you insert rows into multiple sheets in a workbook? | Excel Discussion (Misc queries) | |||
How to repeat a code for selected sheets (or a contiguous range of sheets) in a Workbook? | Excel Worksheet Functions | |||
VBA Code To have a macro repeat on all sheets in a workbook | Excel Worksheet Functions | |||
Title Cut Off if Rows to Repeat & Columns to Repeat are Both Selec | Excel Discussion (Misc queries) | |||
How can I delete similar rows in excel workbook with many sheets? | Excel Worksheet Functions |