This routine lets me print "specific" sheets to the printer defined in a specific cell. What I'm looking for is a way to determine which sheets to print based on the YES/NO in the worksheet and to get the sheet name from the Agenda - Name rows.
Sub Print_Cell_For_Printer()
Sheets(Array("Title", "Implementation Team", "Agenda1", "Agenda2", _
"Agenda3", "Agenda4", "Agenda5", "Agenda6", "Agenda7", "Other1", _
"Other2", "Other3", "Other4", "Other5", "Other6")).Select
Sheets("Title").Activate
'Data Entry is another worksheet that is not in the sample file. In F33 is the name of the Printer from the PC.
ActiveWindow.SelectedSheets.PrintOut ActivePrinter:=CStr(Sheets("Data Entry").Range("F33").Value), Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
Sheets("Title").Select
End Sub
Bookmarks