No I didn't think about that option, I guess that may work...Thank You...
I was hoping to get away from
ActiveWindow.View = xlPageBreakPreview
Which only works when I activate each sheet in the wb which I didn't want to do.
In order to use this snipit:
With wks
On Error Resume Next
.VPageBreaks(1).DragOff Direction:=xlToRight, RegionIndex:=1
.HPageBreaks(1).DragOff Direction:=xlDown, RegionIndex:=1
Cancel = False
.PrintOut
End With
On Error GoTo 0
Cancel = True
ActiveWindow.View = xlNormalView
The script works I just thought there must be a better way...
Thanks, Mike
Bookmarks