How do you turn auto-cal on...

angelshare1

New Member
Joined
Jan 14, 2009
Messages
1
...with a button. ;) You didn't think this would be an easy question did you?

I have a few spreadsheets that jam up my computer when auto calc is on. It's a pain to go to tools-options everytime I go into one of these which is often. Is there a way to get a button on my toolbar for turning auto calc on and off?

Thanks!
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Yep - the basic code would be:
Code:
   With Application
      If .Calculation = xlCalculationAutomatic Then
         .Calculation = xlCalculationManual
      Else
         .Calculation = xlCalculationAutomatic
      End If
   End With
 
Upvote 0
Welcome to the Board!

You could store Rory's code in your Personal Macro Workbook, then create a Custom Toolbar button to run it. Then it should be accessible to you whenever you have Excel open on your computer.

Otherwise, you will need to put it in each workbook that you want to use it from.
 
Upvote 0
If you're interested, I have a basic add-in that I use that adds a toolbar with one button that toggles the calculation mode and displays its current status. If you want it, PM me your email address.
 
Upvote 0
You can also right click your toolbar - customize
find the "Calculate Now" button in the Tools Category.
Drag that directly on your toolbar.


Never mind, not quite the same thing you're looking for
 
Upvote 0

Forum statistics

Threads
1,215,770
Messages
6,126,794
Members
449,337
Latest member
BBV123

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