View Single Post
 
Old 09-07-2025, 10:46 AM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 11 Office 2021
Moderator
 
Join Date: Aug 2011
Posts: 4,036
Stefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to allStefan Blom is a name known to all
Default

Something like this would do the trick:

Code:
Sub SetSinglePageView()

On Error GoTo errhandler
ActiveWindow.View.Type = 3 'Print Layout
ActiveWindow.View.Zoom.PageColumns = 1
ActiveWindow.View.Zoom.Percentage = 100   'specify the zoom you want
errhandler:
Exit Sub
End Sub

You'd have to add the macro to the Normal template and also call the macro from Sub AutoOpen() and Sub AutoNew() in the Normal template.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote