How to only print the last page of a worksheet in Excel?
In many cases, you may just need print the last page of a worksheet in Excel. How to get it done? This article provides a solution to achieve it.
Only print the last page of a worksheet with VBA code
Only print the last page of a worksheet with VBA code
You can run the following VBA code to only print the last page of a worksheet in Excel. Please do as follows.
1. Open the worksheet you just need to print the last page, then press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Applications window.
2. In the Microsoft Visual Basic for Applications window, click Insert > Module. Then copy and paste the below VBA code into the Module window.
VBA code: Only print the last page of a worksheet
Sub PrintLastPage()
Dim xPages As Long
xPages = ActiveSheet.PageSetup.Pages.Count
If xPages > 0 Then ActiveSheet.PrintOut from:=xPages, to:=xPages, preview:=True
End Sub
3. Press the F5 key to run the code, then the last page of current worksheet is displayed in the popping up Print Preview dialog box. Please click the Print button to start printing. See screenshot:
Best Office Productivity Tools
Supercharge Your Spreadsheets: Experience Efficiency Like Never Before with Kutools for Excel
Kutools for Excel boasts over 300 features, ensuring that what you need is just a click away...
Supports Office/Excel 2007-2021 & newer, including 365 | Available in 44 languages | Enjoy a full-featured 30-day free trial.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
