How to make excel to close a workbook and not prompt to save changes. (without saving changes)

Radecki

New Member
Joined
Oct 23, 2013
Messages
17
Hi there!

With the help I got here, some time ago i created an excel file that I use as a converter for my data.
Some smart macros are converting data that I input into the sheet so it looks the way I need it.
I am using this on a daily basis. Each time I am finished when i am closing the file it prompts to save changes (which is a perfectly normal behavior since I put data in it) and i need to click to "do not save" so it clears out the worksheet (not saving the changes) I would like to skip that part. Is it possible to close file and tell excel not to save changes and skip that prompt?

Rad.
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Try like this

Code:
wb.Saved = True ' marks the file as saved but does not save it
wb.Close savechanges:=False
 
Upvote 0

Forum statistics

Threads
1,214,533
Messages
6,120,076
Members
448,943
Latest member
sharmarick

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top