Sunday, February 9, 2025

Excel VBA - Timing Complexity (Part - 2)

If you are handling a huge dataset and your program is taking too much time to run, then you can use the following trick:

Application.Calculation = xlCalculationManual
' Put your code here
Application.Calculation = xlCalculationAutomatic

Refer the below URLs to know more about Excel's 'Calculation' property:
https://learn.microsoft.com/en-us/office/vba/excel/concepts/excel-performance/excel-improving-calculation-performance

Happy Learning !!
hashtagMSExcel hashtagExcel hashtagVBA hashtagMicrosoft

No comments:

Post a Comment

Vulnerability Management - Understanding vulnerability posture

Understanding the vulnerability posture of an organisation at a basic level helps you drive remediation efforts. So, I don't know what t...