VBA - Save a copy of a file in a different folder then parent folder

myay_87

New Member
Joined
Jan 6, 2022
Messages
13
Office Version
  1. 2016
Platform
  1. Windows
Hi,

Can someone help me to modify below cod in order to save a copy of the file in a different folder?

I tried to change "thisPath" to ' thisPath = ThisWorkbook("C:\Users\mihai4.anghel\Downloads\Proiect PT") but nothing happened.

VBA Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Application.EnableEvents = False

    thisPath = ThisWorkbook.Path
    myName = Left(ThisWorkbook.Name, (InStrRev(ThisWorkbook.Name, ".") - 1))
    ext = Right(ThisWorkbook.Name, Len(ThisWorkbook.Name) - InStrRev(ThisWorkbook.Name, "."))
    backupdirectory = myName & " backups"

    Set fso = CreateObject("Scripting.FileSystemObject")

    If Not fso.FolderExists(ThisWorkbook.Path & "/" & backupdirectory) Then
        fso.CreateFolder (ThisWorkbook.Path & "/" & backupdirectory)
    End If

    T = Format(Now, "yyyymmdd hh mm ss")
    ThisWorkbook.SaveCopyAs thisPath & "\" & backupdirectory & "\" & myName & " " & T & "." & ext

    Application.EnableEvents = True
    
End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Hi there...

Have you tried...

VBA Code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Application.EnableEvents = False
    thisPath = "C:\Users\mihai4.anghel\Downloads\Proiect PT\"
    myName = Left(ThisWorkbook.Name, (InStrRev(ThisWorkbook.Name, ".") - 1))
    ext = Right(ThisWorkbook.Name, Len(ThisWorkbook.Name) - InStrRev(ThisWorkbook.Name, "."))
    backupdirectory = myName & " backups"
    Set fso = CreateObject("Scripting.FileSystemObject")
    If Not fso.FolderExists(ThisWorkbook.Path & "/" & backupdirectory) Then
        fso.CreateFolder (ThisWorkbook.Path & "/" & backupdirectory)
    End If
    T = Format(Now, "yyyymmdd hh mm ss")
    ThisWorkbook.SaveCopyAs thisPath & "\" & backupdirectory & "\" & myName & " " & T & "." & ext
    Application.EnableEvents = True
End Sub
 
Upvote 0
I'm received error at this line

ThisWorkbook.SaveCopyAs thisPath & "\" & backupdirectory & "\" & myName & " " & T & "." & ext

View attachment 87887

I change it to:

ThisWorkbook.SaveCopyAs thisPath & "\" & myName & " " & T & "." & ext

and now it's working.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,923
Messages
6,122,286
Members
449,076
Latest member
kenyanscott

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