sheetchange

  • Thread starter Thread starter masterphilch
  • Start date Start date
M

masterphilch

Hi

I created a Workbook_SheetChange-Event and it works really fine!

Further, I've got other macros for automation. Is it possible to prevent
launching this event while other macros are changing the worksheets??
Performance would be a bit better...

tanks for replies
masterphilch
 
You can turn off events before you do something that would cause another event
to fire.

application.enableevents = false
worksheets("sheet1").range("a1").value = "hi there"
application.enableevents = true
 
thanks

Dave said:
You can turn off events before you do something that would cause another event
to fire.

application.enableevents = false
worksheets("sheet1").range("a1").value = "hi there"
application.enableevents = true
 

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