This is for "faster". Thanks for your suggestion, however
Posted by Mike on November 14, 2001 5:44 AM
This was your response, I follow it with my results.
* * * * * * * *
Sub SaveDelete()
'
' SaveDelete Macro
' Macro recorded 11/14/01 by Mike Zaccardo
'
'
Dim ThisBook
ThisFile = ActiveWorkbook.FullName
Application.Dialogs(xlDialogSaveAs).Show "S:\Purchasing\QUOTES\CLOSED\" & ActiveWorkbook.Name
If MsgBox("Delete " & ThisBook, vbYesNo) = vbNo Then
Exit Sub
End If
Kill ThisBook
End Sub
* * * * *
What happens is the file gets moved to the Closed
Folder (Brilliant). But I'm getting a Run Time Error
mismatch on the "Kill ThisBook". The File still remains in the Open Folder.
Suggestions