A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Unfortunately, that didnt work for me...
Strange, that works for everyone else. If you like you can add this 2 macros:
Sub EventsOff()
Application.EnableEvents = False
End Sub
Sub EventsOn()
Application.EnableEvents = True
End Sub
and so switch the events off, resp. on afterwards, but the same happens when you click the Design Mode button.
BTW, a technical note: When the events are off, the Worksheet_Change event routine isn't executed anymore, until you switch the events on.
Andreas.