Using an Option Explicit statement will enable your code to run faster. To add an Option Explicit statement, open the module ...

Using an Option Explicit statement will enable your code to run faster. To add an Option Explicit statement, open the module and add the line Option Explicit at the beginning of the declarations section. Caution: Adding an Option Explicit statement requires you to declare all variables explicitly. You have to declare all variables and constants before the code will compile.