• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Manual Calculation

Shay A

Member
HI,
I have a VERY heavy file which is set to Manual calculation mode, however, when I open it, the formulas calculated without me pressing Calculate Now command. Is there a way to go around this? Maybe to have a macro disabling calculation upon file opening?

TY!
 
In ThisWorkbook Module put this code
Code:
Private Sub Workbook_Open()
    Application.Calculation = xlManual
End Sub
 
Back
Top