disable calculations of a specified sheet

ebeyert

Active Member
Joined
Sep 15, 2006
Messages
287
All,
I have Excel 2007 and a Excel file which contains multiple worksheets. One worksheet (HR Planning) has many formulas which causes that the calculation of the other sheet cost a view seconds. I know that you can setup the calculation options to manual, but this applies for the whole Excel file and this is not want I want. I want to have the calculation option to automatic, except for the worksheet HR planning. Is there option that you setup the calculation on manual for only worksheet HR planning?

Thanks in advantage,
Best regards
Ellerd
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
A simpler alternative to the tek-tip example is to set the
EnableCalculation
property of that particular sheet to False

You can leave the workbook in Automatic Calc mode with this technique

- Alt & F11 to the VBE
- in the 'Project" window click the sheet that you want to set to manual
- in the 'Propeties" window set EnableCalculation to False

or with code
in the ThisWorkbook module you couls use
Code:
Private Sub Workbook_Open()
ThisWorkbook.Sheets(1).EnableCalculation = False
End Sub
to disable calculation on the first worksheet when the workbook opens

Cheers

Dave
 
Upvote 0

Forum statistics

Threads
1,224,588
Messages
6,179,743
Members
452,940
Latest member
rootytrip

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top