How to stop Calculation options switching to Manual - for no apparent reason!
I have a spreadsheet - which is constantly defaulting back to Manual Calculation - which is irritating to say the least. I got it from someone else so not sure if they had turned off Automatic Calculation. I checked my own options and they are fine - how do I make sure it doesn't keep going back to Manual.
Yes I had a look at the VBA and someone has written a macro and I can see they have the following in one bit but I can't see anywhere turning it off but that would explain it. Thank you
End With
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub
agwalsh
ASKER
What would be the best way to deactivate it? Save it as an xlsx?
Anders Ebro (Microsoft MVP)
Yes, you could save it without macros(vba). I can't say however whether the macros are crucial to the operation of the file. There could be custom functions as well, that are needed by the worksheet.
You could also search the code for any place that says xlCalculationManual and try to comment out those lines.
End With
Application.ScreenUpdating
Application.Calculation = xlCalculationAutomatic
End Sub