Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello,
I built an Excal Worksheets that analyse specefic data that I Copy it to a sheet called "Data" when I clear the old data from the sheet, Excel starts to calculate all the formulas in the workbook. then when I copy the new data, it starts to calculate it again. Is there a way to disable the functions, making my changes and then enabling all the function again? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Setting the calculation to manual at the start of the Macro might work.
Try this: Application.Calculation = xlCalculationManual |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Nel post ups.com
*tonyhabayeb* ha scritto: Hello, I built an Excal Worksheets that analyse specefic data that I Copy it to a sheet called "Data" when I clear the old data from the sheet, Excel starts to calculate all the formulas in the workbook. then when I copy the new data, it starts to calculate it again. Is there a way to disable the functions, making my changes and then enabling all the function again? Hi Tony, Yes, you can stop Excel Calculation. Menu Tools, Options, Tab Calculation, select Manual. At the end of your copy, set again on Automatic. -- (I'm not sure of names of menus, options and commands, because translating from the Italian version of Excel...) Hope I helped you. Thanks in advance for your feedback. Ciao Franz Verga from Italy |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Tony,
Expanding slightly on your other responses, try something like: '============= Public Sub Tester() Dim CalcMode As Long On Error GoTo XIT With Application CalcMode = .Calculation .Calculation = xlCalculationManual End With 'Your code XIT: Application.Calculation = CalcMode End Sub '<<============= --- Regards, Norman "tonyhabayeb" wrote in message ups.com... Hello, I built an Excal Worksheets that analyse specefic data that I Copy it to a sheet called "Data" when I clear the old data from the sheet, Excel starts to calculate all the formulas in the workbook. then when I copy the new data, it starts to calculate it again. Is there a way to disable the functions, making my changes and then enabling all the function again? |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thnx a lot.
I used the following command to disable and enable it: Application.ScreenUpdating = False Application.Calculation = xlCalculationManual ..... my code is here .... Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
i've spanish version of excel-how do I change funtions to english | Excel Worksheet Functions | |||
Great Sites for Excel Funtions | Excel Worksheet Functions | |||
use of morefunc funtions in excel macros | Excel Programming | |||
In Excel , How do I turn off the math funtions? | Excel Worksheet Functions | |||
Period to Period percentage change? | Excel Discussion (Misc queries) |