View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
TwoTone TwoTone is offline
external usenet poster
 
Posts: 3
Default Workbook_open event disabled by manual calc command

I am using Excel 2003 on Windows XP professional.

I have some code that runs every time a workbook is opened. As you would
expect, it makes no difference to the firing of this event whether the
application is set to manual or automatic calculation mode.

However, when I change from automatic to manual calculation using the
following line of code in an unrelated procedure, the Workbook_open event
handler stops working until I close and re-load Excel.

Application.Calculation = xlCalculationManual


Any ideas why this is and what to do about it?

TIA

Anthony