You can disable events by using
Application.EnableEvents = False
at the beginning of any event. This disables all events, not only the
one for this particular event. Before exiting the event routine you
need to reset it using
Application.EnableEvents = True