XLA routines: EE_Start
At the start of your code, it's good practise to turn off events, disable alerts, and put calculation on manual.
At the end of your routine, turn them back on.
Here's the code to turn them off:
See here to turn them back on:
EE_End
Public lngCalc As Long Sub EE_Start() 'http://excelexperts.com/xla-routines-eestart Application.EnableEvents = False Application.DisplayAlerts = False lngCalc = Application.Calculation Application.Calculation = xlCalculationManual End Sub
»
- Nick's blog
- Login or register to post comments
- 4107 reads
Recent comments
5 years 41 weeks ago
6 years 27 weeks ago
6 years 39 weeks ago
6 years 42 weeks ago
6 years 43 weeks ago
6 years 48 weeks ago
7 years 4 weeks ago
7 years 5 weeks ago
7 years 5 weeks ago
7 years 5 weeks ago