Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
rw
 
Posts: n/a
Default skip printing worksheet

I have a workbook with many worksheets - When I print the entire workbook, I
would like to not print a specific worksheet.

I know you can do this by "hiding" the worksheet, is there another way?

thanks
rw
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave O
 
Posts: n/a
Default skip printing worksheet

You can group the sheets you want to print by pressing the CTRL button
and left-clicking the tabs at the bottom of the screen. Then click
File Print, select Active Sheets from the window, and press OK.


Remember to ungroup the tabs by right clicking a grouped tab name and
selecting Ungroup Sheets. When tabs are grouped, a change made to one
tab will reflect in ALL the grouped sheets, which can work for you or
(bitter voice of experience talking) delete data.

  #3   Report Post  
Posted to microsoft.public.excel.misc
rw
 
Posts: n/a
Default skip printing worksheet


Thanks Dave O,

I knew this too - howver, there are many worksheets and only 1 I don't want
to print,. Alos I need to show this to others hwa are.. let's say not too
computer literate. Maybe I could create my own print button with a Macro to
select and print the worksheets.
Would this work? probably -- Any other ideas....

There's no way to mark the sheet as no print .. ? right now I set the
print area to 1 empty cell , which creates a blank page .. but makes calls to
me about missing info go away..

Thanks
again.

rw

"Dave O" wrote:

You can group the sheets you want to print by pressing the CTRL button
and left-clicking the tabs at the bottom of the screen. Then click
File Print, select Active Sheets from the window, and press OK.


Remember to ungroup the tabs by right clicking a grouped tab name and
selecting Ungroup Sheets. When tabs are grouped, a change made to one
tab will reflect in ALL the grouped sheets, which can work for you or
(bitter voice of experience talking) delete data.


  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave O
 
Posts: n/a
Default skip printing worksheet

Here's a quick and dirty print macro I recorded:

Sub Print_Certain_Sheets()
Sheets(Array("Sheet1", "Sheet2", "Sheet4")).Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Sheets("Sheet1").Select
End Sub

Change Sheet1 Sheet2 Sheet4 to match your tab names (and add to it as
necessary), then assign this macro to a command button on your screen.

  #5   Report Post  
Posted to microsoft.public.excel.misc
rw
 
Posts: n/a
Default skip printing worksheet

Thanks Dave O..

rw

"Dave O" wrote:

Here's a quick and dirty print macro I recorded:

Sub Print_Certain_Sheets()
Sheets(Array("Sheet1", "Sheet2", "Sheet4")).Select
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Sheets("Sheet1").Select
End Sub

Change Sheet1 Sheet2 Sheet4 to match your tab names (and add to it as
necessary), then assign this macro to a command button on your screen.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
automate printing different ranges on 1 worksheet at different tim SteveM Excel Discussion (Misc queries) 2 December 29th 05 03:01 PM
How do I reference data from one worksheet to another using combob caricc New Users to Excel 0 December 17th 05 09:58 PM
Is there a shortcut to skip down the page in a large worksheet? Carole Drake Excel Discussion (Misc queries) 3 December 15th 05 07:27 PM
Copy from worksheet to another x times Union70 Excel Discussion (Misc queries) 0 March 7th 05 09:03 PM
copyright and worksheet protection dow Excel Discussion (Misc queries) 2 January 3rd 05 03:07 PM


All times are GMT +1. The time now is 11:00 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"