View Single Post
  #4   Report Post  
Terry_BWL
 
Posts: n/a
Default

Thanks to both of you for the help.

"Don Guillett" wrote:

Another approach saves the file in a backup folder.

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

--
Don Guillett
SalesAid Software

"Terry_BWL" wrote in message
...
I have been using Lotus. When you SAVE AS you are given the choice to

make a
BAK (backup) file. Is there a similiar command in Excel? When I use SAVE

AS
it just asks if I want to replace. Thanks for any help.