A family of Microsoft word processing software products for creating web, email, and print documents.
When you choose Multiple Pages by itself, you are letting Word decide how many pages to show. If you choose Multiple Pages, then set the zoom slide (lower right corner of the Word window) to a slightly higher number, the display will pop to 2 pages.
You can automate this with a macro. If you choose Multiple Pages and the zoom resets to something like 132%, increasing the zoom by about 10% will should make it pop to 2 pages. You'll have to experiment to get the zoom required for the window size on your computer:
Sub ViewTwo()
ActiveWindow.ActivePane.View.Zoom.Percentage = 142
End Sub
If your window size and zoom is consistent, you can make this an AutoOpen macro in your Normal.dotm file, so that every time you open Word it's set to this percentage.