D
Dave Peterson
It tells excel's VBA that you want to be forced to declare all the variables you
use.
That way, if you do something like:
Dim ctr1 as long
ctr1 = ctrl + 1
You won't have to spend hours finding the typo (1 vs l (one vs ell)).
You'd get a compile error right away.
use.
That way, if you do something like:
Dim ctr1 as long
ctr1 = ctrl + 1
You won't have to spend hours finding the typo (1 vs l (one vs ell)).
You'd get a compile error right away.
Dave,
I have a quick question. What is the purpose of using the "Option
Explicit"? Thanks.