Backup files in separate directory?

M

Martyn B Tindall

Is there no way to get Excel to put .XLK files in a different
directory from .XLS files? (E97)

TIA,
 
D

Dave Peterson

Nope.

But you could create a macro that would save the workbook and save a copy.

Something like:

Option Explicit
Sub testme()
With ActiveWorkbook
.Save
.SaveCopyAs Filename:="C:\my backups\" & .Name
End With
End Sub
 
Top