Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
I want to add a button that prints many, but not all, worksheets. How do I go about this? Thanks, Graeme |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Graeme at Raptup" wrote in
message ... Hi, I want to add a button that prints many, but not all, worksheets. How do I go about this? Thanks, Graeme Turn macro recording on, do what you want to do manually, turn macro recording off. You can now add a button to the menu and assign this macro to the button. (press F11 to look at the VB code created in case you need to modify it.) |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Graeme
You can use a array Sheets(Array("Sheet1", "Sheet3")).PrintOut 'all sheets in the array Or print the selected sheets ActiveWindow.SelectedSheets.PrintOut 'print all selected sheets -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Graeme at Raptup" wrote in message ... Hi, I want to add a button that prints many, but not all, worksheets. How do I go about this? Thanks, Graeme |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks, I ended up using Sheets(Array(.... "Ron de Bruin" wrote: Hi Graeme You can use a array Sheets(Array("Sheet1", "Sheet3")).PrintOut 'all sheets in the array Or print the selected sheets ActiveWindow.SelectedSheets.PrintOut 'print all selected sheets -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Graeme at Raptup" wrote in message ... Hi, I want to add a button that prints many, but not all, worksheets. How do I go about this? Thanks, Graeme |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need to print a workbook but worksheets have diff print areas | Excel Discussion (Misc queries) | |||
All worksheets will not print | Excel Discussion (Misc queries) | |||
How to PRINT all worksheets at once | Setting up and Configuration of Excel | |||
How do I print a workbook in but only print selected worksheets? | Excel Discussion (Misc queries) | |||
print out of worksheets | Excel Worksheet Functions |