Jun 11, 2001 #1 excelhelp Technical User Joined Dec 4, 2006 Messages 5 Location GB I'm trying to close Excel without having the prompt come up to save changes...the spreadsheet will be used as a template.
I'm trying to close Excel without having the prompt come up to save changes...the spreadsheet will be used as a template.
Jun 11, 2001 1 #2 CindyK Technical User Joined Jan 29, 2001 Messages 173 Location US Check out Microsoft Q213428. You could put following in workbook module: Sub Auto_Close() ThisWorkbook.Saved = True End Sub Hope this helps. Upvote 0 Downvote
Check out Microsoft Q213428. You could put following in workbook module: Sub Auto_Close() ThisWorkbook.Saved = True End Sub Hope this helps.
Jun 11, 2001 Thread starter #3 excelhelp Technical User Joined Dec 4, 2006 Messages 5 Location GB that did it, thanks! Upvote 0 Downvote