dominicwellsuk
New Member
- Joined
- Mar 23, 2011
- Messages
- 28
Hello there,
I'm looking to create a macro that takes every tab in a workbook and saves it as an individual file. An individual would be working on a single workbook with multiple tabs, and would periodically make individual file copies of each tab into a folder for a supervisor to review, without having to go into that persons file.
Got this for copying the tab to a new workbook, and saving that:
ActiveSheet.Select
ActiveSheet.Copy
ActiveSheet.Name = "Concern Document"
ActiveWorkbook.SaveAs Filename:="NEW FILE NAME WHATEVER THAT IS", _ CreateBackup:=False
ActiveWorkbook.Close
But how do I cycle through the tabs to pick them out for saving?
Thanks
I'm looking to create a macro that takes every tab in a workbook and saves it as an individual file. An individual would be working on a single workbook with multiple tabs, and would periodically make individual file copies of each tab into a folder for a supervisor to review, without having to go into that persons file.
Got this for copying the tab to a new workbook, and saving that:
ActiveSheet.Select
ActiveSheet.Copy
ActiveSheet.Name = "Concern Document"
ActiveWorkbook.SaveAs Filename:="NEW FILE NAME WHATEVER THAT IS", _ CreateBackup:=False
ActiveWorkbook.Close
But how do I cycle through the tabs to pick them out for saving?
Thanks