Hi Ken
Something like this should work
*********************************************
Dim xls As Worksheet
Dim Z As Integer, X As Integer
Dim varReturn As Variant
Z = ActiveWorkbook.ActiveSheet.Index
Application.ScreenUpdating = False
Application.Cursor = xlWait
For Each xls In ActiveWindow.SelectedSheets
xls.Activate
ActiveSheet..PrintOut Copies:=1, Collate:=True
Next xls
ActiveWorkbook.Sheets(Z).Activate
Application.Cursor = xlDefault
Application.ScreenUpdating = True
*********************************************
----- ken.mcdaniel wrote: -----
Does anyone have a code example of how to bring up a
dialog box that allows the user to select which worksheets
to print and then printing only those selections?
Thanks!