Question : Calculating 2 processors issue in excel

Hi,

Calculating 2 processors issue in excel
I have some codes that are used to do some task.
When i do use those macros or do a manual job like. Delete a row or add a row or any thing. Like even enter data into a cell i get this

Calculating 2 processors.

Which takes min 1 Min to complete.

Anyone knows how to sort this issue please.

REgards
Sharath

Answer : Calculating 2 processors issue in excel

You eIther have lots of formulas in the spreadsheet you're working in OR you have another spreadsheet open in the same Excel instance that has a lot of formulas.  You need to make sure that you're running your code alone in an instance of excel, whenever possible.  Also, before your code begins, you need to add ...

  Application.Calculation = xlCalculationManual

and then at the end, you need to add

  Application.Calculation = xlCalculationAutomatic

Good luck,

sdwalker
Random Solutions  
  •  Access 2007 getting message "you do not have the necessary permissions to use"
  •  The Microsoft Jet database engine could not find the object 'Databases'.  Make sure the object exists and that you spell its name and the path name correctly.
  •  When are Access records actually deleted from table?
  •  Operation has timed out error while sending mail (above 2 MB) through C#.net
  •  What are the Interview Questions expected for WSS 3.0 having 1.5 to 2 years of experience.
  •  Exchange Migration - Exchange 2003 - Exchange 2007 - Old Hardware to New Hardware
  •  Replace Windows 2000 Server with 2003 server
  •  Receiving error when submitting data to SQL Server through asp.net vb
  •  Hibernate Mapping - Stored Proc result from multiple tables
  •  Insert Data from a table and also add a date/time the data was added in a column called DateRcv
  •  
    programming4us programming4us