Thread: Default View
View Single Post
 
Old 03-13-2014, 12:49 PM
Stefan Blom's Avatar
Stefan Blom Stefan Blom is offline Windows 7 64bit Office 2013
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

You will have to use a couple of auto macros that you add to the Normal template:

Code:
Sub AutoOpen()
With ActiveWindow.View
.Type = 3 'Print Layout view
.Zoom.PageColumns = 1
.Zoom.Percentage = 120
End With
End Sub
 
Sub AutoNew()
With ActiveWindow.View
.Type = 3 'Print Layout view
.Zoom.PageColumns = 1
.Zoom.Percentage = 120
End With
End Sub
For assistance with the installation, see http://www.gmayor.com/installing_macro.htm.
__________________
Stefan Blom
Microsoft Word MVP

Microsoft 365 apps for business
Windows 11 Professional
Reply With Quote