Excel "Calculating Cells"...

O

okelly

hi folks

Since including some VBA & macros in my Excel sheet performance of my
Excel file has slowed considerably. It appears Excel is "calculating
cells" for any values I drop & drag in each sheet...The VBA code is a
series of loop, else, if etc...

Performance of the workbook is now very slow..

Rather than post all the VBA & macro code here are there any "rules of
thumb" to look out for...

I don't want to set "Calculation" to manual in the book...

thanks for the help..(I know I'm not giving much to go by...)

rgds
Conor
 
N

Niek Otten

First look at Charles William's site:

www.decisionmodels.com

If you still have problems, do post your code

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

|
| hi folks
|
| Since including some VBA & macros in my Excel sheet performance of my
| Excel file has slowed considerably. It appears Excel is "calculating
| cells" for any values I drop & drag in each sheet...The VBA code is a
| series of loop, else, if etc...
|
| Performance of the workbook is now very slow..
|
| Rather than post all the VBA & macro code here are there any "rules of
| thumb" to look out for...
|
| I don't want to set "Calculation" to manual in the book...
|
| thanks for the help..(I know I'm not giving much to go by...)
|
| rgds
| Conor
|
|
| --
| okelly
| ------------------------------------------------------------------------
| okelly's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=36708
| View this thread: http://www.excelforum.com/showthread.php?threadid=571736
|
 
G

Guest

Try wrapping your macros with the following:

Application.ScreenUpdating = False
....
....
Application.ScreenUpdating = True

Good luck,
pflugs
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top