View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
NickHK NickHK is offline
external usenet poster
 
Posts: 4,391
Default public property in one workbook, want to set value from anothe

Mark,
What about toggling Application.EnableEvents=False/true ?

NickHK

"Mark VII" wrote in message
...
Have you tried setting Application.Calculation to manual, making the

changes and then setting it back to automatic?

Interestingly, I tried to do exactly that. Unfortunately, the Worksheet
Change event in the second workbook contains logic where I'm turning
calculation off, then on again as part of some special handling of user
updates. Consequently, calcuation starts out turned off by the utility
program, but the second workbook's Worksheet Change logic turns it back on

at
the end of the sub.

Mark