View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Adam[_14_] Adam[_14_] is offline
external usenet poster
 
Posts: 4
Default Disabling worksheet_change when running a specific macro . .

Never mind . . . Should've spent more time googling before posting that
.. . .
Fixed it with

sub InsertProj
Application.EnableEvents = False
<< Code
Application.EnableEvents = True
end sub

on my macro . .