Domski
Well-known Member
- Joined
- Jan 18, 2005
- Messages
- 7,292
Voted intermediate and always use it (don't really remember ever not).
I use Ctrl+Space all the time to complete my variable names and whether I compile code before running it generally depends how I'm feeling that day.
This is a classic mistake I've seen from a few people who are pretty competent at writing VBA:
Not that using Option Explicit makes any difference to that.
Dom
I use Ctrl+Space all the time to complete my variable names and whether I compile code before running it generally depends how I'm feeling that day.
This is a classic mistake I've seen from a few people who are pretty competent at writing VBA:
Code:
Dim lngLastRow, lngLoopRow, lngFirstRow As Long
Not that using Option Explicit makes any difference to that.
Dom