Hi Everyone,
We are trying to select multiple sheets from an array of sheets which is generated on the fly ( as we dont always print the same sheets out ) how do I select multiple sheets at the same time ? the code below selects each one in turn, and we want to ADD the sheet to a multiple selectionof all the ones in the array and then print tham all out in 1 doc
For Each ws In array_of_sheets
ActiveWorkbook.Sheets(ws).Select
Next
Selection.PrintOut
Thanks
Snorky
We are trying to select multiple sheets from an array of sheets which is generated on the fly ( as we dont always print the same sheets out ) how do I select multiple sheets at the same time ? the code below selects each one in turn, and we want to ADD the sheet to a multiple selectionof all the ones in the array and then print tham all out in 1 doc
For Each ws In array_of_sheets
ActiveWorkbook.Sheets(ws).Select
Next
Selection.PrintOut
Thanks
Snorky