Jacky has attended:
Excel VBA Intro Intermediate course
Variables
how do you create a variable?
RE: Variables
Jacky
A variable needs to be declared before it can be used. To do this:
Dim/Public <variablename> as <type>
eg
Dim Area as Single
Public UserName as String
Regards
Carlos