Under "This Workbook" module, put this code:
Private Sub Workbook_Open()
With Application
.Calculation = xlManual
.MaxChange = 0.001
End With
ActiveWorkbook.PrecisionAsDisplayed = False
MsgBox ("Calculation set to manual. Please use F9 for calculation")
End Sub
I added a message box to let the user know that the calculation has been set to manual.
Thanks. This is exactly what I was looking for. Can I assume to reverse it upon close that I can just change the 'xlManual' to 'xlAutomatic' on the Befor_Close event?
Appreciate the help.
MsgBox ("Calculation set to manual. Please use F9 for calculation")