Jun 11, 2001 #1 excelhelp Technical User Dec 4, 2006 5 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 Jan 29, 2001 173 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 Dec 4, 2006 5 GB that did it, thanks! Upvote 0 Downvote