Micro Optimization - danielep71/VBA-PERFORMANCE GitHub Wiki

Home


1. Intro

It is easy to lapse into bad programming habits when working with small macros, but with large macros and macros that run a long time, it is critical to use efficient coding. I have collected several tips and tricks about VBA performance improvements. When there are two ways to obtain the same result, I tested the timing difference with the class cPerformanceMonitor to assess their impact.

The results are classified as follows:

image


2. A quick guide for performance-savvy programmers


Home