And if you use "option explicit" and dim your variables appropriately, then you
can get the VBE's intellisense to pop up for you. (Less wear and tear on the
memory!)
Try this in a test module:
Option explicit
sub testme()
Dim Wks as worksheet
'now type wks. (as soon as you hit that dot, you should see some valid choices
for what you can do to a worksheet (or a property of the worksheet that you can
examine).
This is very nice to us older folks.
And by forcing you to declare your variables, you don't have to spend hours
looking for the mistake in this code:
for xlctr = 1 to 5
msgbox x1ctr
next xlctr
(the one's and ell's are mixed up).
You would have gotten an error when you tried to compile.
And this is nice to us older folks with bifocals!