Forcing Worksheets to Print on a New Sheet

Written by Allen Wyatt (last updated April 30, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365


Eva often prints entire workbooks at once. When she does, she prints double-sided so that she can conserve paper. However, this sometimes means that the first page of a worksheet will print on the back of the last page of the previous worksheet. Eva wonders if there is a way to make sure that a worksheet always starts printing on a new piece of paper when printing entire workbooks double-sided.

There is a manual way to approach this and a more automatic method. The manual method involves figuring out which of your worksheets require an odd number of pages to print, and then forcing that worksheet to use an even number of pages. Once you identify such a worksheet, all you need to do is go to the end of that worksheet (just below the last row) and insert a page break. (Display the Page Layout tab of the ribbon and click the Breaks tool. You can then choose Insert Page Break.)

The automatic method involves using a macro to print your workbook instead of using the regular Print command. The macro, in essence, prints each worksheet individually, one after the other. Thus, if you have 5 worksheets, then the macro prints them as 5 separate print jobs. Each will begin on the front of a new page. Here's the macro:

Public Sub PrintAllSheets()
    Dim wks As Worksheet

    For Each wks In ActiveWorkbook.Worksheets
        wks.PrintOut
    Next
    Set wks = Nothing
End Sub

This macro, as stated, prints all the worksheets in the workbook. If you want to print a subset of the worksheets, then you could modify the macro to print only those worksheet selected when the macro is executed.

Sub PrintSomePages()
    Dim wks As Worksheet

    For Each wks In ActiveWindow.SelectedSheets
        wks.PrintOut
    Next
    Set wks = Nothing
End Sub

Either (or both) of these macros could easily be added to your Quick Access Toolbar so that you can print exactly what you want (all or some) with just the click of a button.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (1984) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Freezing a Table

Tired of Word changing the dimensions of table cells to accommodate what you place in those cells? You can instruct Word ...

Discover More

Changing Information in Multiple Documents

If you need to change text in many documents at the same time, Word isn't the best tool to use. Here's some ideas on ways ...

Discover More

Printing Outside the Boundaries All the Time

If Word thinks you are going to print in an area of the page that isn't printable, it will let you know. If you don't ...

Discover More

Program Successfully in Excel! This guide will provide you with all the information you need to automate any task in Excel and save time and effort. Learn how to extend Excel's functionality with VBA to create solutions not possible with the standard features. Includes latest information for Excel 2024 and Microsoft 365. Check out Mastering Excel VBA Programming today!

More ExcelTips (ribbon)

Printing an Entire Workbook by Default

Need to print an entire workbook? It's as easy as adding a single line of code to your macros.

Discover More

Specifying Print Quantity in a Cell

When you print a worksheet, you can specify in the Print dialog box how many copies you want printed. If you want the ...

Discover More

Printing a Draft Watermark

Adding a watermark to the background of a printout can be challenging. This tip explains the different ways you can ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is seven less than 8?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.