On my sheet I have Worksheet change, selection change and before doubleclick macros. They work like a charm but sometimes they stop working. They don't trigger at all, even when I do a thing that must trigger them.
When they stop to trigger : 1. If i write a macro like
sub test
msgbox "hello" & application.EnableEvents
end sub
and play this macro, it works and show me "hello TRUE".
If I add msgbox "hello" at the first line in worksheet change macro, and test it with a thing that must trigger it, nothing happen.
If I close the workbook and reopen it, that works again like a charm.
I don't know what can stop these macro. I though that if application.events return "TRUE" then these macros must trigger (and eventually cause errors, but they must trigger). What could I do to test what stop them sometimes ? What could it be ?
Add this code to your worksheet:
Now enter the number 1 in cell A1. This will fire the worksheet change event, which will add 1 to the value in cell A1, which will fire the worksheet change event, which will add 1 to the value in cell A1.....
Now look at this code:
Now enter a 1 in cell A1. Event watching is turned off, 1 is added to the value in cell A1 and because event watching is turned off - nothing else happens except it is turned on again after the event would have fired.