Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can someone tell me how to turn of the ChangeEvent triger in excel?
I have some pivot tables that when I update the formulas, the system updates all the of data that is linked to an Access database. This is a major productivity issue since each update takes about 10 minutes and for each file I have 3 columns that need to be updated. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.EnableEvents = False
Note of caution: Excel will not set this back to true automatically under any circumstances, so you need to make very sure your error handling ensures it always gets reset before your code stops running. Otherwise your events will continue to not "fire". The only way to reset is via code - no menu items will get you here. "Zeus" wrote: Can someone tell me how to turn of the ChangeEvent triger in excel? I have some pivot tables that when I update the formulas, the system updates all the of data that is linked to an Access database. This is a major productivity issue since each update takes about 10 minutes and for each file I have 3 columns that need to be updated. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Lynn,
Thanks for the response. However, I am new to this VB coding. Where (How) do I code this into the VB Editor? Is this a Private or Dim Statement? What else do I need to code for this to work? "B Lynn B" wrote: Application.EnableEvents = False Note of caution: Excel will not set this back to true automatically under any circumstances, so you need to make very sure your error handling ensures it always gets reset before your code stops running. Otherwise your events will continue to not "fire". The only way to reset is via code - no menu items will get you here. "Zeus" wrote: Can someone tell me how to turn of the ChangeEvent triger in excel? I have some pivot tables that when I update the formulas, the system updates all the of data that is linked to an Access database. This is a major productivity issue since each update takes about 10 minutes and for each file I have 3 columns that need to be updated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing Pivit tables | Excel Discussion (Misc queries) | |||
Pivit Tables | Excel Worksheet Functions | |||
Relate 2 tables in excel | Excel Programming | |||
Comparing tables in excel with formulas | Excel Discussion (Misc queries) | |||
copying output from pivit tables | Excel Programming |