M
Mitch Powell
I need to turn AutoCalc off when a user opens the workbook. I've tried the
following to methods:
Sub Autpen()
Application.Calculation = xlCalculationManual
End Sub
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub
In both cases, if AutoCalc is already on, the workbook calculates before
these routines are run. Any suggestions?
following to methods:
Sub Autpen()
Application.Calculation = xlCalculationManual
End Sub
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub
In both cases, if AutoCalc is already on, the workbook calculates before
these routines are run. Any suggestions?