How do I create a shortcut key to print the current page only?

G

Guest

I work in editing and frequently need to print the current page that I am
working on in Word. I would like to create a shortcut to only print the
current page. There is an option to do this in the print box, but a shortcut
would be nice. The print box also always defaults to printing the whole
document, requiring input before it only prints the current page. I suppose
that simply changing this default would be close enough of a solution for me,
but I have been unable to do this either.
 
S

Suzanne S. Barnhill

Unfortunately, the only way to do this is with a macro. The following macro
has been provided previously in various NGs:

Sub PrintCurrentPage()
ActiveDocument.PrintOut Range:=wdPrintCurrentPage
End Sub

For information on installing it, see
http://www.gmayor.com/installing_macro.htm

Once it is installed, you can assign it to a toolbar, menu, or shortcut key.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top