I have a set of worksheets, all listed in a single cell. Like this:
"Sheet1, Sheet2, Sheet3 . . . "
And in VB, I want to select all of those sheets. I WAS using sheets(array("Sheet1", "Sheet2", . . . ).select
But now I want to use sheets(array(SheetNames)).select
Where SheetNames is the value in the cell as written above. How could I make that work? The number of sheets is not constant. I do not want to separate the list into separate cells.
-Nick
"Sheet1, Sheet2, Sheet3 . . . "
And in VB, I want to select all of those sheets. I WAS using sheets(array("Sheet1", "Sheet2", . . . ).select
But now I want to use sheets(array(SheetNames)).select
Where SheetNames is the value in the cell as written above. How could I make that work? The number of sheets is not constant. I do not want to separate the list into separate cells.
-Nick