Disable Calculation of One of the Sheets

Ceeyee

Board Regular
Joined
Feb 2, 2011
Messages
164
Hi,

I have a worksheet with formulas getting data from other sheets (only inflows), but no other sheets need data from this sheet (no outflows).

I don't use this sheet often, but it has a lot of formulas in there and it slows down the workbook when other sheets calculate as they will update this sheet as well.

Is it possible to disable the calculation of the formulas in this sheet (only), until I enable it again?

Thanks.
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
These two macros will Disable\Enable calculations on only Sheet3. Change the sheet name in the code to suit.

Code:
Sub Disable_Calculations_Sheet3()
   Sheets([COLOR="Red"]"Sheet3"[/COLOR]).EnableCalculation = False
End Sub

Sub Enable_Calculations_Sheet3()
    Sheets([COLOR="Red"]"Sheet3"[/COLOR]).EnableCalculation = True
End Sub
 
Upvote 0
If we set .EnableCalculation = False but do not set it back to True, and we close the workbook.
When we reopen the workbook, would the False still be effective?

Can this .EnableCalculation parameter also be used on a range?

Thanks.
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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