VBA code to move workbooks to another folder based on workbook name

MissaLissa

New Member
Joined
Jul 2, 2013
Messages
26
I have approx 30 workbooks that I need to move to different folders based on the workbook name. The folders that these files are being moved to already exist. I have some code but it only moves one file, I need help moving them all.

Move LTCi_Operations.xlsx to folder named IAS Operations
Move AS_Operations.xlsx to folder named AS Operations
Move Assessment_Services.xlsx to folder named Assessment Services
Etc...

Code:
Sub Move_Final_Reports()
    sSaveFrom = "D:\Final Reports\"  
    sSaveTo = "D:\Final Reports\LTCi\IAS Operations\"   
    sFile = "*LTCi_Operations*.xl*"   
    
    Set FSO = CreateObject("scripting.filesystemobject")
    
    FSO.MoveFile Source:=sSaveFrom & sFile, Destination:=sSaveTo

End Sub
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Sorry, the above code was the wrong... Here is the code that is working to move one file... how do add more files to this code?

Code:
Sub Move_Final_Reports()    sSaveFrom = "[URL="file://\\ltcgsrv1\CognosExpress\Final"]\\ltcgsrv1\CognosExpress\Final[/URL] Reports\"
    sSaveTo = "[URL="file://\\ltcgsrv1\CognosExpress\Final"]\\ltcgsrv1\CognosExpress\Final[/URL] Reports\LTCi\IAS Operations\"
    sFile = "*LTCi_Operations*.xl*"
    
    Set FSO = CreateObject("scripting.filesystemobject")
    
    FSO.MoveFile Source:=sSaveFrom & sFile, Destination:=sSaveTo
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,323
Members
452,635
Latest member
laura12345

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