auto no save

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how would i go about having a code that closes the worksheet, and does NOT
save it
 
Another way to close a workbook without saving:

dim wkbk as workbook
set wkbk = workbooks("whatever.xls")
'....

wkbk.close savechanges:=false
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top