Grouping of sheets and enabling/disabling Autocalcs

pcomet

New Member
Joined
Jul 7, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I have a workbook that is a rollup of analysis on individual assets. There are numerous sheets and many conditional sumproduct summation formulas within each that are slowing down calcs (i believe). I want to be able to turn off the calcs on sheets i am not working on.

The workbook contains analysis on 5 assets. Each asset has 5 sheets related to the asset. Within each asset group, there are 2 data entry sheets (simple sumif/countif/average if in these). The other 3 sheets contain inputs contain heavy formulas.

There are 5 additional summary output sheet that summarize the information for each of the 5 assets. The 5 summary output sheets have IRR and conditional sumproduct summation formulas.

My goal is to group the sheets related to each of the 5 assets and group the 5 summary sheets, so i can only have calcs enabled on an individual asset or on the output sheets.

Any suggestions?
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Try this: set recalc to Manual and add this code to every worksheet's events. Hopefully the calc. latency isn't too sluggish.

VBA Code:
Option Explicit

Private Sub Worksheet_Change(ByVal Target As Range)
  Me.UsedRange.Calculate
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,035
Members
449,092
Latest member
ikke

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