page setup in excel 2000

dccunn

New Member
Joined
Apr 28, 2002
Messages
1
In a workbook with multiple worksheets, I want to select all my worksheets and in the page setup, sheet tab, define the rows I want to print at the top of each page. Those options are grayed out unless I select each worksheet individually. Is there a fix for this problem?
Thank you.
Dave Cunningham
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi Dave,

Here is a workaround: simply use the following macro to set the number of title rows for all the selected sheets at once.

Sub MultiTitleRows()
Dim TitleRows As Range
Dim WS As Worksheet
Set TitleRows = Application.InputBox( _
"Enter title rows to be used for each selected worksheet", _
"Multi-sheet Page Setup", Type:=8)
For Each WS In ActiveWindow.SelectedSheets
WS.PageSetup.PrintTitleRows = TitleRows.Address
Next WS
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top