Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a large report in which I perform numorious sorts. The report takes a
long time to create because after every sort, it goes through the calculations. Is there a way to run the report without it calculating until the very end? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way:
Wrap your code with Application.Calculation = xlCalculationManual <your code here Application.Calculation = xlCalculationAutomatic In article , BZeyger wrote: I have a large report in which I perform numorious sorts. The report takes a long time to create because after every sort, it goes through the calculations. Is there a way to run the report without it calculating until the very end? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Also, switch application.screenupdating=false at the beginning and switch it
back to true at the end - that will speed things up as well. -- www.alignment-systems.com "JE McGimpsey" wrote: One way: Wrap your code with Application.Calculation = xlCalculationManual <your code here Application.Calculation = xlCalculationAutomatic In article , BZeyger wrote: I have a large report in which I perform numorious sorts. The report takes a long time to create because after every sort, it goes through the calculations. Is there a way to run the report without it calculating until the very end? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Can I tell my Macro to stop running for 10sec? | Excel Programming | |||
How do I stop a Macro from running? | Excel Worksheet Functions | |||
How to stop a macro while it is running ? | Excel Programming | |||
When Save As stop running macro | Excel Programming | |||
How to Pause or Stop a running Macro | Excel Programming |