Select only visible sheets from an array for printing

ashline02

New Member
Joined
Aug 2, 2011
Messages
2
Long time lurker, first time poster :)

I need help figuring out how to select the visible sheets from an array so that they may be printed while excluding all other sheets, visible or not.

At all times I have at least 1 ws out of an array of 11 visible. I have 2 other ws that are always visible, but will never be printed, for a total of 13 possible ws that can be visible at any time.

Here is what I have so far:
________________________
Sub printselect()

Dim tf As Boolean
tf = True
For Each SH In Worksheets(Array(1, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15))
If SH.Visible Then SH.Select tf << it hangs up here
tf = False
Next

Const xlDialogPrinterSetup = 9
Dim strOld As String
Dim strNew As String

strOld = Application.ActivePrinter
Application.Dialogs(xlDialogPrinterSetup).Show

strNew = Application.ActivePrinter

ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True

Application.ActivePrinter = strOld
End Sub
____________________

It may hang up other places as well, but I haven't been able to get by this as of yet. Any help would be much appreciated. Let me know if you need more info on any part. Thanks!

The Noob :confused:
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Without getting into the array side of the issue, generally addressing your question (if I read it correctly), you can loop through selected sheets like this:


Dim sh as Object
for each sh in ActiveWindow.SelectedSheets

'print or edit yada yada

Next sh
 
Upvote 0
The problem is that the first time through the loop, tf is set to false and it remains that way for all the other loops.

Also, xlDialogPrinterSetup is a system constant and can't be reset, so that line should be removed.

Code:
Dim SH as Worksheet
Dim strOld as String, strNew as String

strOld = Application.ActivePrinter
Application.Dialogs(xlDialogPrinterSetup).Show

strNew = Application.ActivePrinter

For Each SH In Worksheets(Array(1, 3, 7, 8, 9, 10, 11, 12, 13, 14, 15))
    If SH.Visible = xlSheetVisible Then
        SH.PrintOut  Copies:=1, Collate:=True 
        Exit For
    End If
Next SH

Application.ActivePrinter = strOld
 
Upvote 0
It seems to work OK here, the only thing that I'd consider changing is:
Code:
If sh.Visible Then sh.Select tf '<< it hangs up here
tf = False
to:
Code:
If sh.Visible Then 
   sh.Select tf '<< it hangs up here
   tf = False
end if
as if the first sheet it come across IS hidden, tf will still be set to false, rather than only after the first visible sheet in the array.

If any of your tested sheets are xlVeryHidden, it may fail because Sheet.Visible may not return what you expect, insted use:
Code:
If sh.Visible = -1 Then
 
Upvote 0
Somewhere in the recesses of my brain I think that printing out one sheet at a time is not quite the same as printing out selected sheets - something to do with the number of print jobs and page numbering - I think with the Selectedsheets printout you get continuous page numbering, and I also think there's another difference, but can't dig it out - perhaps to do with print preview?
 
Upvote 0
@ p45cal

The "-1" did the trick. I learned something new :) Thank you so much!! And thank you to the other responders as well, I really appreciate the help!

A little less noob
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,333
Members
452,636
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top