Disabling Sheet Code

  • Thread starter Thread starter Chip Pearson
  • Start date Start date
C

Chip Pearson

Stuart,

You can disable event processing with

Application.EnableEvents = False
' your code here
Application.EnableEvents = True
 
How do I disable Sheet code such as "Private Sub
Worksheet_SelectionChange(ByVal Target As Excel.Range)" from working when
another sub in another module is operating on the sheet.
 
Back
Top