I have a problem since the update of Excel 2016 in version 1712.
If we do a "application.quit" in a macro and don't use the Excel GUI, Excel seems to be closed but the process is still alive.
If we call the macro with a button or an action in excel it works and in debug, step by step, it works fine.
But if we call the macro on workbook opening it won't.
A simple example : An empty Workbook with only one macro
Private Sub Workbook_Open()
Application.Quit
End Sub
I tried "wait","doevents","screenupadating",change visibility.
It happen on several computers.
Has anyone experienced this as well?