Caculating Cells

Woodstar

New Member
Joined
May 20, 2005
Messages
37
I have a workbook where each cell has a formula to calculate cells in other work sheets. Problem is everything I move from sheet to sheet or filter I have to wait until all the cells are recalculated. Is there a macro that can be built to toggle on and off to calculate when I want it to? Or does excel have a built in function for that?

Many thanks to this board for you have solved several problems for me. Again thanks!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
you can have two buttons one "automatic" and other "manual" anda assign them to these
and 2 macros . Please remember after the work is over to click "automatic" button (or have an event code before closing the workbook the macro "automatic" will be invoked)

Code:
Sub automatic()
With Application
        .Calculation = xlAutomatic
        End With
End Sub

Code:
Sub manual()
With Application
        .Calculation = xlManual
        End With
End Sub

There may be more elegant solutions.

a
 
Upvote 0
Thanks! That's exactly what I wanted; worked like a champ. Like I said I've always got an answer at this board. Again Thanks
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,241
Members
449,075
Latest member
staticfluids

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