» 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:
- The Intelligent Investor: The Classic Bestseller on Value Investing
- Learn MS Excel 2002 VBA/XML Programming
- Marketing Plan: A Handbook with Marketing Plan
- H&R Block's Just Plain Smart(tm) Tax Planning Advisor: A year-round approach to lowering your taxes this year, next year and beyond
- Managing by the Numbers: A Commonsense Guide to Understanding and Using Your Company's Financials: An Essential Resource for Growing Businesses
- The One Page Business Plan: Start With a Vision, Build a Company!
No comments have been submitted.

