Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hi,
I currently embed an Excel macro in my spreadsheets which will print the entire workbook (40+ sheets) should the user request it: Private Sub CommandButton2_Click() Dim Sheet As Worksheet Dim lAnswer As Long lAnswer = MsgBox("This report contains " & Sheets.Count & " sheets - Do you want to print them all?", vbYesNo, "Print?") If lAnswer = vbNo Then Exit Sub Else Worksheets.Select Application.Dialogs(xlDialogPrint).Show Sheets("Total").Select End If End Sub However, I have now incorporated several workings sheets that are hidden which I do not want to be printed - the only problem is I don't know how to alter the above code to exclude the sheets (called "Input" and "Workings"). Can anybody help? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing Landscaped and Portrait worksheets at same time...XP | Excel Discussion (Misc queries) | |||
Printing multiple worksheets on one page | Excel Discussion (Misc queries) | |||
Excel - printing multiple worksheets on one page | Excel Discussion (Misc queries) | |||
printing an array of worksheets | Excel Discussion (Misc queries) |