Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » VBA
VBA
Resolved · Low Priority · Version 2003
For upcoming training course dates see: Pricing & availability
RE: VBA
Hi Albert
A Variable is a name used to represent a value and it identifies a unique location in memory.
They are used to represent values that may change during the procedure.
The syntax is Dim/Public/Private VariableName [As type]. eg:
Dim Counter As Integer
Hope this helps
Carlos
|
