"VBA Research" application.calculation state affects VBA running speed

Source: Internet
Author: User

Iamlaosong

Discover a phenomenon that When the application.calculation is automatically calculated, the 2003 version does not seem to reduce the speed of VBA, but the 2007 version has a significant impact and is particularly noticeable when the data is large, especially when the volume is high, and the speed reduction is unbearable. To do this, you must change the application.calculation state to Manual mode, and then restore it at the end of the run. Another factor that affects VBA speed is screen refresh, which can temporarily turn off screen refreshes for speed. namely:

VBA usually starts with two sentences in the program:
application.screenupdating = False
Application.calculation = xlcalculationmanual
Resume at the end:
Application.calculation = xlcalculationautomatic
application.screenupdating = True

It should be noted that the names of the two computed states in version 2003 are:xlmanual and xlautomatic.

"VBA Research" application.calculation state affects VBA running speed

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.