I've got an Excel 2007 Spreadsheet and I'd like to write a VBA procedure to print particular worksheets by name. How do I do this?
For example, I'd like to print "FirstSheet","ThirdSheet", and "FourthSheet" but not "SecondSheet".
|
|
|
If you know the sheet name simply call the
For small amounts of sheets it is quite more easy by this way! |
||||
|
|
Call like:
The nested loop is not optimal, in regards to runtime performance. With the limited number of sheets an Excel workbook can contain, I think this is negligible. However, using a |
|||
|
Something similar to the following should work:
|
|||
|