Saving backup workbook problem with Excel 2002 SP2

  • Thread starter Thread starter Matt Edwards
  • Start date Start date
M

Matt Edwards

I have selected 'Always save backup' in the save as -
tools - general options in my workbook, but I have to save
the workbook two or three times before it will save a
backup. Why is this?
 
Dunno but you might like this

Sub Backup() 'kept in personal.xls & assigned to toolbar button
On Error GoTo BackupFile
MkDir CurDir & "\Backup"
BackupFile:
With ActiveWorkbook
MyWB = .Path & "\BACKUP\" & .Name
.SaveCopyAs MyWB
.Save
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