I have a very strange problem with Excel.
In Excel VBA I use ThisWorkBook to run some initial commands at start up for example:
Private Sub Workbook_Open()
With Application
.ScreenUpdating = False
.DisplayFormulaBar = False
.DisplayStatusBar = False
.ScreenUpdating =...