Nelson78
Well-known Member
- Joined
- Sep 11, 2017
- Messages
- 526
- Office Version
- 2007
Hello everybody.
When I open the workbook, I need to inactive all formulas except in a specific sheet.
I've composed the following code, but unsuccessfully.
What's wrong?
When I open the workbook, I need to inactive all formulas except in a specific sheet.
I've composed the following code, but unsuccessfully.
Code:
Private Sub Workbook_Open()
Application.Calculation = xlManual
Application.CalculateBeforeSave = False
Worksheets("Second sheeet").Calculate
End Sub
What's wrong?