Macro Intro
You have your data in Worksheets but you need separate Workbooks. The tedious way is to open a bunch of blank Workbooks. Then copy and paste information from each Worksheet and save each Workbook onto your computer. Good news is there is a better way with VBA! Save Worksheets as Workbooks is an Excel macro that will take existing worksheets and save them as their own workbook. By default, the path of the Active Workbook will be used so the new Workbooks are saved at the same location. (Customize: You can indicate a different path in the VBA code) Once saved the Worksheet name will become the new Workbook name. This macro is a great way separate your data making it easier to send Workbooks as attachments to specific recipients.If you need a quick way to move information into their own worksheet checkout our macro Excel Create Worksheet per Filter Value!See it in Action
Watch this video to see this macro in action.Code
Here is the code for this macro. Make sure the following References are setup before running it: Visual Basic For Applications, Microsoft Excel 16.0 Object LibraryCustomization
These segments of code can be customized to personalize this macro.Change the FilePath so the new workbooks save somewhere else
Remove the MsgBox or make it comment to not see it once the macro finishes