G Guest Aug 21, 2006 #1 When closing a file via macro, I continue to get the message do I want to save this file. Can someone help me bypass that message.
When closing a file via macro, I continue to get the message do I want to save this file. Can someone help me bypass that message.
D Die_Another_Day Aug 21, 2006 #3 The best approach would be this: Dim File1 as Workbook Set File1 = Workbooks("YourWorkbook.xls") File1.Close False
The best approach would be this: Dim File1 as Workbook Set File1 = Workbooks("YourWorkbook.xls") File1.Close False