Setting Calcs for auto & Manual depending on tab selected

choli0090

New Member
Joined
Aug 18, 2009
Messages
42
Hello.

Is there a way to have calculations set for manual if the user selects a particular worksheet/tab in the file (i.e tab name is "Example A") & when the user selects any other tab/worksheet in the same file, calculations are set for automatic?

Also is there a way to display in a cell if calc are set for manual or automated?

Thanks
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
You could have a worksheet activate code for each workbook, selecting the appropriate line from the two options below:

Private Sub Worksheet_Activate()


Application.Calculation = xlManual
or
Application.Calculation = xlAutomatic


Cells(1,1).value=Application.Calculation


End Sub

It would also be prudent to set calculation to auto when you exit a worksheet that triggered the manual calc mode on activation. The last line in the sub above will put the code for the calculation mode in cell A1. It will be -4105 for automatic or -4135 for manual. You probably won't be happy with those numbers, so you can convert them via an If formula on the worksheet, or convert in the macro and display a word of your preference in the place you want it.

I hope this helps.

Ken
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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