Avatar of ocaccy
ocaccy
Flag for Japan

asked on 

VBA - Disable Excel 2010 Compatibility Checker

Hi everyone.

I put these instructions in the VBA script, but the window keeps popping compatibility checker.
How should the correct syntax to save and not ask for confirmation of compatibility?

Sub savePlan()
    Call AjusteDeLayout_1
    
    Application.EnableEvents = False
    ActiveWorkbook.Save
    Application.EnableEvents = True
    Range("A2").Select
End Sub

Open in new window

compatibility-checker.PNG
Microsoft ExcelVisual Basic.NETVisual Basic Classic

Avatar of undefined
Last Comment
ocaccy

8/22/2022 - Mon