J
Joe
I have a workbook with 69 worksheets.
68 of the worksheets are formatted exactly the same. Each
represents a different jurisdiction.
The 69th sheet is called "Pivots". I have code that
creates csv files by drilling down on each pivot table.
The code is something like...
Dim pt as PivotTable
For each pt in Worksheets("Pivots").Pivottables
Do some stuff
Next pt
This works very well but I may always want to do
the "stuff" on every pivot table. Is there a way, with
user forms or something, to select certain pivot tables
(based on their name, maybe?). Maybe using check boxes?
68 of the worksheets are formatted exactly the same. Each
represents a different jurisdiction.
The 69th sheet is called "Pivots". I have code that
creates csv files by drilling down on each pivot table.
The code is something like...
Dim pt as PivotTable
For each pt in Worksheets("Pivots").Pivottables
Do some stuff
Next pt
This works very well but I may always want to do
the "stuff" on every pivot table. Is there a way, with
user forms or something, to select certain pivot tables
(based on their name, maybe?). Maybe using check boxes?