saving

  • Thread starter Thread starter Guest
  • Start date Start date
Sub BUandSave2()
'Saves the current file to a backup folder and the default folder
'Note that any backup is overwritten
Application.DisplayAlerts = False
ActiveWorkbook.SaveCopyAs FileName:="G:\" & _
ActiveWorkbook.Name
ActiveWorkbook.Save
Application.DisplayAlerts = True
End Sub

Edit for your mem stick drive letter.

Mine is G:


Gord Dibben MS Excel MVP
 
Back
Top