VBA: Page Break Preview

November 5th, 2004 | Categories: VBA | Tags:

To place Sheet1 in Page Break Preview View from code:

Sheet1.Activate
ActiveWindow.View = xlPageBreakPreview

To place Sheet1 in in Normal View from code:

Sheet1.Activate
ActiveWindow.View = xlNormalView
No comments yet.