Auto_Close() Macro

Jaamie

Board Regular
Joined
Apr 16, 2003
Messages
224
Office Version
  1. 2016
Platform
  1. Windows
I was changing an old program and noticed that the Auto_Close() macro was not closing Excel completely as it used to with only 1 workbook open. The following code only closes Excel completely if you press the Close Window X (the lower of the 2 X's in the upper right corner). Using the Top X runs the Auto_Close macro but leaves a blank Excel Window open. Any ideas on a complete close with the upper X? Thank you.

Code:
    SCnt = Workbooks.Count
    If SCnt > 1 Then
      ActiveWorkbook.Close SaveChanges:=True   'Control
    Else
      ActiveWorkbook.Save
      Application.ScreenUpdating = True
      ThisWorkbook.Saved = True
      Application.Quit
    End If
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"

Forum statistics

Threads
1,215,375
Messages
6,124,578
Members
449,174
Latest member
chandan4057

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