I know how to select 1 sheet or all sheets for an export command, but how would I for example, select "sheet1" and "sheet3" while ignoring "sheet2"?
How do I select multiple SPECIFIC sheets from an Excel Workbook?
Collapse
X
-
This may be what you're looking for:
Code:Sheets(Array("Sheet1", "Sheet3")).Select
Comment