Sub FixEvents()
'Reset Events after a crash
Application.EnableEvents = True
End Sub
Private Sub CommandButton1_Click()
'Reset Events after a crash
Application.EnableEvents = True
End Sub
Private Sub CommandButton1_Click()
MsgBox "EnableEvents Status: " & Application.EnableEvents, , "Before Reset Attempt"
'Reset Events after a crash
Application.EnableEvents = True
MsgBox "EnableEvents Status: " & Application.EnableEvents, , "After Reset Attempt"
End Sub
That's the button you had me create. I just removed the code. Excel 2010.
so if it works for you but not for me do you have any suggestions?
Private Sub CommandButton21_Click()
MsgBox "EnableEvents Status: " & Application.EnableEvents, , "Before Reset Attempt"
'Reset Events after a crash
Application.EnableEvents = True
MsgBox "EnableEvents Status: " & Application.EnableEvents, , "After Reset Attempt"
End Sub