You already know that Windows supports multiple printers. Using Excel with multiple printers can be a bother, however, since you must display the Print dialog box (Excel 2007) or the Print information (Excel 2010 or a later version), change the printer, and then print the worksheet.
There is a way, however, that you can have one-click printing of your worksheets on a designated printer. To do this, simply create a macro that changes the printer and then prints the worksheets. Here is a macro that will accomplish the task:
Sub GoodPrinter() Application.ActivePrinter = "HP LaserJet" ActiveWindow.SelectedSheets.PrintOut Copies:=1 End Sub
When you create this macro on your system, make sure you change the printer name in the second line of the macro. It must exactly match the name of a printer on your system. (In this example the printer name is set to "HP LaserJet". You should change it to match the name of the printer you want used.)
The trick is to create one of these macros for each of the printers you use. You can add a command for each printer to your Quick Access Toolbar so that each printer has its own print button. When you then click on the command or button, the appropriate macro is run and you get output on the desired printer.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (12578) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Office 365. You can find a version of this tip for the older menu interface of Excel here: Working With Multiple Printers.
Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!
Should you print in portrait or in landscape? The decision can greatly affect the way your printout looks. Wouldn't it be ...
Discover MoreWhen you share workbooks on a company server, it can be frustrating if the workbooks are downloaded to individual ...
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 MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2018-03-18 06:58:01
Willy Vanhaelen
@Clinton
Why didn't you try it? Then you would have seen that if a print area is set only that print area is printed. :-)
2018-03-17 12:30:34
Clifton
Will this work if you have a "print area" set on the worksheet, or would you have to change the macro? I have a worksheet I want to print as a PDF and on my system "Adobe Acrobat " is listed as a printer, so I think I can use this. I only want to print the "print area".
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