Hello everybody,

I do have a file in which I have a macro that closes and saves the file, if the user is running the macro. The file is saved under the specified folder it is located. The code is as follows:

Public CloseMode As Boolean
Sub Save_Close()
Dim Passwrd As String
Dim xx As Variant
Dim sFileFormat
Passwrd = "PASSWORD"
xx = MsgBox("Are you sure you want to close the file?", vbYesNo)
If xx <> vbYes Then
Cancel = True
Else
'fileformats
' xls = -4143 < 2007
' xlsm = 52 2007 >
With Application
.DisplayAlerts = False
sFileFormat = IIf(.Version < 12, -4143, 52)
End With
With ThisWorkbook
.SaveAs Filename:=.FullName, _
FileFormat:=sFileFormat, _
Password:=Passwrd, _
WriteResPassword:="", _
ReadOnlyRecommended:=False, _
CreateBackup:=False
.Saved = True
End With
'allow workbook to close
CloseMode = False
With Application
.DisplayAlerts = True
ActiveWorkbook.Close
End With
End If
End Sub

I would now like, apart from the above, which works fine, to also save a copy of that file in another location (another folder on my drive).
Can the above macro also include a command to save a copy of this file in another location?

Thank you