To clear an object variable, you would set it to nothing.
How would you clear a non-object variable?
I ask because in the following code, the variable a is declared at the module level, so every time the sub is run, the variable's value increases.
I want the variable a to "clear" after the...