It's usually pretty easy to check yourself.
Common ones to look for are queries that return a lot of data, or don't use native functions.
Very long loops (for or while)
lots of references to the sheet
You can comment out sections and see how it effects performance to narrow it down too. (Or use a timer and output the time when each section is executed)
You can try turning off auto calculate, and screen updating.
Also make sure you're not running out of RAM.
Main Topics
Browse All Topics





by: roryaPosted on 2009-10-26 at 09:00:11ID: 25663640
I'm not aware of any free ones. I think people tend to just put timer statements in the code and test.