Dim... As ...

S

scottnshelly

I need some help understanding exactly what this Dim thing is.
searched in the forum and in the tips, but couldn't find anything. Ca
anyone help explain what circumstances require a Dim and what it doe
and how to do it?
Thanks
 
B

Bob Phillips

Dim declares a variable, which you can use in your code as ways to save some
data for later use. Within the Dim statement, you can define the type of the
variables, string, long, range, etc., with the As part.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top