In this article, we will focus on demonstrating you with 3 effectual methods to print the current page in your Word document.
Printing is an important issue relating to Word document. Sometimes, it’s not the entire document but only the current page that you want to print. Luckily, Word provides workarounds for you to achieve such need. You can read this post and choose one method you like to help you print current page smoothly.
Method 1: Go through the Print Command
- First and foremost, move your cursor to the page you want to print out.
- Then click “File” tab.
- Next click “Print” on the left column in backstage.
- Enter the copy number you need.
- And choose a printer.
- Then click the drop-down box to select “Print Current Page” option.
- Lastly, click “Print” button on the top of the column.
Method 2: Use Keyboard
In case you prefer using keyboard more often, you can press “Alt” first. Then you shall find each command in the Ribbon is assigned with a letter. Press the same letter key to achieve the same effect of clicking.
- First when you press “Alt”, you can see there is a letter “F”. Then press “F” to go to the backstage view.
- Next press “P”.
- Then press “A” and use the arrow key to select option. After this, you may find letters are gone, just pressing “Alt” again, and they shall be back.
- Next press “P” to print.
Here is our video demonstration:
Method 3: Run Word Macro
- To begin with, click “Developer” tab first.
- Then click the “Visual Basic” option to open the VBA editor. If the “Developer” tab is not activated, you can choose to press “Alt+ F11” instead.
- Next click “Normal” project.
- Then click “Insert” tab.
- And choose “Module” on the drop-down menu.
- Now double click on the module to bring out the coding area.
- Paste the bellowing codes there:
Sub PrintCurrentPage() Dim strFileNumber As String Dim objDoc As Document Set objDoc = ActiveDocument strFileNumber = InputBox("Enter the number of copy you need: ") ' set Microsoft XPS Document Writer as the active printer. Application.ActivePrinter = "Microsoft XPS Document Writer" objDoc.ActiveWindow.PrintOut Range:=wdPrintCurrentPage, Copies:=strFileNumber End Sub
- Next hit “F5” or click “Run”.
- Now there will be an input box popping up. Enter a number indicating how many copies you want. Then click “OK”.
Note:
In code line Application.ActivePrinter = “Microsoft XPS Document Writer”, replace “Microsoft XPS Document Writer” with the printer you actually use.
Get Help with Broken Word Documents
While working in Word, your Word suddenly collapses. What’s more heart-broken is to have a damaged doc. To see all your efforts and time spent now become inaccessible is never easy. Therefore, you should take hold of a prominent fixing tool as soon as possible so as to recover your data.
Author Introduction:
Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including corrupt xls and pdf repair software products. For more information visit www.datanumen.com
Leave a Reply