I have a workbook that will have a dozen or so sheets that will vary in name on a regular basis. I want to be able to copy all sheets after the fourth sheet into a new .xlsx workbook.
I have looked for a solution, but all I find is
But the names of the sheets will be changing, so I need a solution that uses some form of "To Sheets.Count ".
Any ideas?
I have looked for a solution, but all I find is
Code:
Sheets(Array("Sheet1", "Sheet2", "Sheet3")).Select
Sheets(Array("Sheet1", "Sheet2", "Sheet3")).Copy
But the names of the sheets will be changing, so I need a solution that uses some form of "To Sheets.Count ".
Any ideas?