Forum home » Delegate support and help forum » Microsoft Excel Training and help » best training excel intermediate - Variables
best training excel intermediate - Variables
Resolved · Low Priority · Version Standard
For upcoming training course dates see: Pricing & availability
RE: Variables
Karen
To define a variable you use the VBA word "Dim". For best practice you should also give it a Data Type. For example:
Dim MyVariable As String
The word Public can be used instead of Dim if the variable is being shared with other Modules or Forms.
Caarlos
|
