
Tips.Net > ExcelTips Home > Printing > Automatically Printing a Range
Summary: If you want to automatically print a particular area of your worksheet at a specific time of day, you’ll love this tip. With the use of two small macros, you can get just the automatic output you need. (This tip works with Microsoft Excel 97, Excel 2000, Excel 2002, Excel 2003, and Excel 2007.)
If you are automating your office using Excel, you may wonder if there is a way to automatically print the contents of a cell range at a given time each day. For instance, you might have a workbook that is always open, logging input from a different program. At a particular time each day you may want to automatically print a range that contains summary information.
There are a couple of approaches you could use to this problem, including using Windows Scripting to handle the printing. However, since the workbook is always open, you don't have to resort to that. Instead, you can rely on the native macro capabilities of Excel.
The solution considered here requires two macros. The first is one that runs whenever the workbook is first opened. It sets up the correct event handler to trigger the actual macro that does the printing.
Private Sub Workbook_Open()
'Schedule the printing
Application.OnTime TimeValue("17:00:00"), "PrintMe"
End Sub
This particular marco sets the OnTime method to be triggered whenever 5:00 p.m. is reached. To specify a different time of day, simply change the time (using 24-hour notation) in the macro. When 5:00 p.m. rolls around, Excel will run the PrintMe macro:
Private Sub PrintMe()
Sheets(2).PrintOut
'Reschedule the printing
Application.OnTime TimeValue("17:00:00"), "PrintMe"
End Sub
This macro does nothing but print the second sheet in the workbook (which should contain the summary info you want printed) and then reset the OnTime method to again be triggered at 5:00 p.m. the next day. If you want a different data range to be printed, simply change the object used with the PrintOut method in the first line of the macro.
Tip #1977 applies to Microsoft Excel versions: 97 2000 2002 2003 2007
PivotTables Got You Perplexed? PivotTables for the Faint of Heart shows how you can start using Excel's PivotTable tool right away to spin your data into gold! You discover how easy it really is to crunch the numbers you need to crunch. Uncover the power of creating PivotTables, editing them, formatting them, customizing them, and much more.
Check out PivotTables for the Faint of Heart today!
It doesn't matter if you are a beginner or expert, the ExcelTips archives are the fastest way to improve your productivity. (more information...)
Ask an Excel Question
Make a Comment
ExcelTips FAQ
ExcelTips Premium
Bugs and Pests Tips
ExcelTips
Family Tips
Health Tips
Home Tips
Organizing Tips
WordTips
Advertise on the
ExcelTips Site