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:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (1984) applies to Microsoft Excel 2007, 2010, 2013, and 2016.
Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel 2013 Data Analysis and Business Modeling today!
Should you print in portrait or in landscape? The decision can greatly affect the way your printout looks. Wouldn't it be ...
Discover MoreIf you want to print just the contents of a number of rows and columns, it can be challenging to get the output you want. ...
Discover MoreWhen you print multiple copies of worksheets that require more than one page each, you'll probably want those copies ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2016-03-14 11:02:36
Karen Mater
I suspect that if you use the macro to print an entire workbook, the numbering will restart for each worksheet. How would you make sure numbering continues across each worksheet?
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2021 Sharon Parq Associates, Inc.
Comments