L
lanrcdd
Is there a way to set the same print range for a group of worksheets without
having to set it for each sheet individually?
having to set it for each sheet individually?
Gord Dibben said:You could try this macro.
Note: to set things like margins, headers, footers etc. group the sheets and do
those steps before running the macro.
Or record a macro whilst doing those steps and incorporate into the
Set_Print_Range macro.
Sub Set_Print_Range()
Set MySheets = ActiveWindow.SelectedSheets
For Each ws In MySheets
ws.Select
With ActiveSheet
.PageSetup.PrintArea = "$A$1:$K$41"
.PrintOut
.PageSetup.PrintArea = "$M$9:$V$41"
.PrintOut
End With
Next ws
End Sub
Gord