View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Dave is Miffed Dave is Miffed is offline
external usenet poster
 
Posts: 1
Default Workbook_Open() Not executing

Miffed.

My spreadsheet which relies hevily on certain code being executed when the
sheet is opened, but work open event is not executing. This morning it
stopped working?

Private Sub Workbook_Open()

Application.ScreenUpdating = False
MsgBox "Made it to wrokbook _open"
Call InitialiseSheet
Call Add_Custom_Menu
Call Run_Filters

Application.ScreenUpdating = True
Range("a2").Select
End Sub

There is no enable event code either false or true in the workbook.

Any ideas?

Dave