» Select a printer tray before printing using VBA in Microsoft Excel
VBA macro tip contributed by Erlandsen Data Consulting offering Microsoft Excel Application development, template customization, support and training solutions
CATEGORY - Printing in VBA
VERSION - All Microsoft Excel Versions
When you print documents from Word with VBA it's possible to select which printer tray the document is supposed to get a sheet from. In Excel you don't have the opportunity to set the properties FirstPageTray
or OtherPagesTray like you can in Word. It's possible to create a simple solution by using SendKeys.
Here are two example macros:
Sub ChangeTray()
' selects the manual page tray without printing
Application.SendKeys "%fu%e{TAB}{DOWN}{DOWN}{TAB}m~{ESC}", True
End Sub
Sub ChangeTrayAndPrint()
' selects the manual page tray and prints the selected sheet(s)
Application.SendKeys "%fu%e{TAB}{DOWN}{DOWN}{TAB}m~~", True
End Sub
The example macros above will work with the norwegian version of Excel97 together with a Canon bubblejet printer. The content of the textstring that you transfer with SendKeys may be different from computer to computer depending
on the version of Excel and the installed printer. You will have to edit the above macros to make them work for you
on your computer.
You will find a complete list of special characters that replaces the special function keys in the built-in help for VBA,
type SendKeys in a module, select the word and press the F1-key.
Book Store:
Recommended Books:
- Yes, You Can Time the Market!
- Special Edition Using Microsoft Access 2002
- Harry Potter and the Order of the Phoenix (Book 5)
- Successful Business Planning in 30 Days: A Step-By-Step Guide for Writing a Business Plan and Starting Your Own Business
- Microsoft Excel Version 2002 Step by Step
- Accounting for Dummies
No comments have been submitted.

