Saving multiple worksheets as independent files

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a multiple worksheet workbook that on a regular basis would like to
save as independent workbooks. Is there an easy way to do this vs. cutting &
pasting into another workbook?
 
Right-click the tab name, select Move or Copy, pick new book from the To
Book dropdown, and either leave the Create a Copy checkbox unticked (move)
or tick it (Copy).
 
Hewlett

Can you live with a macro?

Sub Make_New_Books()
Dim w As Worksheet
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each w In ActiveWorkbook.Worksheets
w.Copy
ActiveWorkbook.SaveAs FileName:=ThisWorkbook.Path & "\" & w.Name
ActiveWorkbook.Close
Next w
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub

Gord Dibben Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top