MS Word Question #2

MS Word Question #2:
Over thirty years ago I had word processing programs that were smart enough to–when you selected a paragraph from a document and entered a print command,–to know to print just the paragraph.
But even today (at least in Word 13) Word has to be told to print only the selected text. Otherwise it prints he entire document. Is there a setting to make Word as smart as the thirty-year old programs?

In 30 years, programs (or programmers) have gotten smart enough to realize that it’s much more common for people to want to print a whole document rather than just the paragraph that happens to be highlighted. So they have programmed it so that when the print command is invoked, the default selected is to print the whole thing. For the rare occasions where the user wants to print only the selected text, they can easily click that option. That’s why it works this way.

I don’t know if there is a way to change the proint defaults; I’ve never wanted to do so.

A bit of searching shows that it appears the Word Print option is generated on the fly, and there is no way to change the the default that is selected.

But you could create a macro to print only your selected paragraph, and use that for printing. Here’s a sample macro that prints the whole document; you could write a version to do just a paragraph.

The information below applies to Word 2007 or later. I have 2016.

This will print just the selection. You can put this macro in the macros for the Normal document, which is the template that is open whenever Word is open. Then you can create a custom button in your Quick Access Toolbar or the ribbon based on this. Then one click will print the selection.



Sub PrintDoc()
   Application.PrintOut Range:=wdPrintSelection
End Sub


Although people have complained every time the version of any software program is upgraded, on balance Word is incredibly more powerful than anything available 30 years ago.

Join Date writes:
“In 30 years, programs (or programmers) have gotten smart enough to realize that it’s much more common for people to want to print a whole document rather than just the paragraph that happens to be highlighted. So they have programmed it so that when the print command is invoked, the default selected is to print the whole thing. For the rare occasions where the user wants to print only the selected text, they can easily click that option. That’s why it works this way.”

It may, indeed, be relatively rare for one to want a selected section printed (compared to entire document), but such rare cases are the only ones relevant to my question.
If one wants the entire document printed, it gets printed because nothing is selected.
IF something IS selected, then the program should be smart enough to recognize this and print only the selected material–as some programs did thirty years ago.

I agree. For 40 years, I have been teaching students the mantra “Select->Perform”, and this new concept violates that. However, I can see an option box allowing all/selected to be printed; either during the print dialogue or a global setting.

Join Date?
Do you mean t-bonham@scc.net?

For me, I often pull up an existing document, make some editing changes, and then save & print a new copy of the whole document. So it’s common to have the last paragraph I edited still selected.

But I guess the way people use software differs. We now have various ways to customize software to our individual preferences, like macros. That’s an improvement. (But it also makes it hard when updating software – often those individual customizations are not saved in an update. I’ve often delayed updating because of this.)

In Office applications customizations are supposed to be preserved across updates, at least when both from and to versions are 2007 or later. It is possible and easy to export customizations (macros, Quick Access Toolbar, Ribbon) and re-import them in case they are lost in an update or reinstall. I do this all the time to move customizations from one machine with Office 2013 to another with Office 2016.