Autosave

  • Thread starter Thread starter Brad
  • Start date Start date
B

Brad

I'm trying to write a macro that when a master file is saved, it will
automatically save a read only copy in another folder, any suggestions?
 
You could use a macro that saves a copy in your favorite backup folder and then
marks the file readonly (the windows attribute).

Option Explicit
Sub testme01()
Dim myPath As String
Dim myFileName As String

myPath = "C:\backups"
If Right(myPath, 1) <> "\" Then
myPath = myPath & "\"
End If

With ThisWorkbook
'save the workbook
.Save

myFileName = myPath & .Name

On Error Resume Next 'in case it's not there
'vbNormal will allow the code to overwrite the file
SetAttr pathname:=myFileName, attributes:=vbNormal
On Error GoTo 0

.SaveCopyAs Filename:=myFileName
SetAttr pathname:=myFileName, attributes:=vbReadOnly

End With

End Sub
 

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