accountingblm
New Member
I'm having some issues with a code I've been using to seperate a workbook with multiple worksheets into individual workbooks. The code works great, but i would like it to dump off all the other background tabs. So when it save the tab to it's own workbook it doesn't bring all the other tabs with it. Here is the code i have been using.
Sub SplitSheets()
Dim W As Worksheet
For Each W In Worksheets
W.SaveAs ActiveWorkbook.Path & "/" & W.Name
Next W
End Sub
Sub SplitSheets()
Dim W As Worksheet
For Each W In Worksheets
W.SaveAs ActiveWorkbook.Path & "/" & W.Name
Next W
End Sub