How to Change the Default Open View in Microsoft Word

Techwalla may earn compensation through affiliate links in this story. Learn more about our affiliate and product review process here.
Word's Print Layout view shows the way your document should look when printed.
Image Credit: Monkey Business Images/Monkey Business/Getty Images

Although Microsoft Word has several different ways you can view or edit your documents, the Print Layout view is the default. If you want to make quick edits using the Draft view, however, you have to change views manually every time you open your documents. Although there are no application options to change your default view, you can use VBA or Visual Basic for Applications macros to force Word to open documents in the view you prefer.

Advertisement

Step 1

Open a new document using the "Blank document" template.

Video of the Day

Step 2

Click "Views" and then "Macros" to open the Macros dialog box.

Step 3

Type "AutoOpen" in the "Macro name" input box and then click "Create."

Advertisement

Step 4

Add the VBA code to open previously saved documents in Draft view, to the boilerplate code Word automatically inserts. Your code will resemble the following:

Sub AutoOpen() ' ' AutoOpen Macros ' ' ActiveWindow.View.Draft=True

Advertisement

End Sub

Advertisement

Step 5

Type the VBA code that will display new documents in Draft view on a blank line below the "End Sub." If you leave out VBA comments, your AutoNew macro should look like the code below:

Advertisement

Sub AutoNew() ActiveWindow.View.Draft=True End Sub

Step 6

Close the "Microsoft Visual Basic for Applications" window and return to your document.

Step 7

Close all documents and then create a new document using the "Blank document" template. The new document will automatically open in Draft view.

Video of the Day

Advertisement

Advertisement

references

Report an Issue

screenshot of the current page

Screenshot loading...