Copy Multiple Worksheets to New Folders

VBAAccountant

New Member
Joined
Jun 12, 2018
Messages
15
Hello,

I have an excel file with multiple sheets (Ex: Santa, Rudolf, Dasher, etc) in my Current folder. I need to create a macro that will copy those sheets into seperate existing folders with the same names (Santa, Rudolf, Dasher, etc) in another network folder path.

I have this macro that copies the sheets and saves them as separate files (which I want), but they are all going in the a new folder together. I'm not sure how to get them to be saved individually in the existing folders with the corresponding names:

Sub SaveShtsAsBook()
Dim Sheet As Worksheet, SheetName$, MyFilePath$, N&
MyFilePath$ = ActiveWorkbook.Path & "\" & _
Left(ThisWorkbook.Name, Len(ThisWorkbook.Name) - 4)
With Application
.ScreenUpdating = False
.DisplayAlerts = False
' End With
On Error Resume Next '<< a folder exists
MkDir MyFilePath '<< create a folder
For N = 5 To Sheets.Count
Sheets(N).Activate
SheetName = ActiveSheet.Name
Cells.Copy
Workbooks.Add (xlWBATWorksheet)
With ActiveWorkbook
With .ActiveSheet
.Paste
.Name = SheetName
[A1].Select
End With
'save book in this folder
.SaveAs Filename:=MyFilePath _
& "\" & SheetName & ".xls"
.Close SaveChanges:=True
End With
.CutCopyMode = False
Next
End With
Sheet1.Activate
End Sub

Any suggestions would be greatly appreciated : )
 

Attachments

  • Current Folder File.png
    Current Folder File.png
    83.3 KB · Views: 6
  • New Folder.png
    New Folder.png
    22.6 KB · Views: 9

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Does this work?

It creates the subfolders if they don't already exist.

I'm glad to see that you are working hard to make sure that children get their presents this Christmas.

VBA Code:
Sub SaveShtsAsBook()
Dim i As Integer
Dim strPath As String
Dim Wb As Workbook

   ActiveWorkbook.Save
   
   Application.ScreenUpdating = False
   
   ' Set an object to the master workbook.
    Set Wb = ThisWorkbook
   
    strPath = Wb.Path & "\" & Left(Wb.Name, Len(Wb.Name) - 5)
      
    If Dir(strPath, vbDirectory) = "" Then
        MkDir strPath
    End If
   
    For i = 5 To Wb.Sheets.Count
           
        If Dir(strPath & "\" & Sheets(i).Name, vbDirectory) = "" Then
            MkDir strPath & "\" & Wb.Sheets(i).Name
        End If
          
        Wb.Sheets(i).Copy
                
        ActiveWorkbook.SaveAs strPath & "\" & Wb.Sheets(i).Name & "\" & Wb.Sheets(i).Name & ".xlsx"
        
        ActiveWorkbook.Close
      
    Next i
    
    Application.ScreenUpdating = True
    
    ActiveWorkbook.Save
    
    MsgBox "Worksheets copied and saved in correspondingly named workbooks.", vbOKOnly, "Confirmation"
    
End Sub
 
Upvote 1
Solution
Does this work?

It creates the subfolders if they don't already exist.

I'm glad to see that you are working hard to make sure that children get their presents this Christmas.

VBA Code:
Sub SaveShtsAsBook()
Dim i As Integer
Dim strPath As String
Dim Wb As Workbook

   ActiveWorkbook.Save
  
   Application.ScreenUpdating = False
  
   ' Set an object to the master workbook.
    Set Wb = ThisWorkbook
  
    strPath = Wb.Path & "\" & Left(Wb.Name, Len(Wb.Name) - 5)
     
    If Dir(strPath, vbDirectory) = "" Then
        MkDir strPath
    End If
  
    For i = 5 To Wb.Sheets.Count
          
        If Dir(strPath & "\" & Sheets(i).Name, vbDirectory) = "" Then
            MkDir strPath & "\" & Wb.Sheets(i).Name
        End If
         
        Wb.Sheets(i).Copy
               
        ActiveWorkbook.SaveAs strPath & "\" & Wb.Sheets(i).Name & "\" & Wb.Sheets(i).Name & ".xlsx"
       
        ActiveWorkbook.Close
     
    Next i
   
    Application.ScreenUpdating = True
   
    ActiveWorkbook.Save
   
    MsgBox "Worksheets copied and saved in correspondingly named workbooks.", vbOKOnly, "Confirmation"
   
End Sub
Works perfectly...thank you!
 
Upvote 0

Forum statistics

Threads
1,215,084
Messages
6,123,024
Members
449,092
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top