Disable Macro

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Is there a way to temporarily disable a macro while
running another macro? I have a macro that is activated
on Worksheet change. I'd like to disable this while the
other macro is running.

Thank you for your help.

Mark.
 
Mark,

You may want to investigate Application.EnableEvents = False

Rob
 
Application.enableEvents = False
'
Application.EnableEvents = True

will stop events for Excel objects from running.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top