Willem has attended:
Excel VBA Intro Intermediate course
Excel VBA Intro Intermediate course
Carlos
what is a variable
RE: Variable Declaration
Hi Willem
A Variable is a name used to represent a value in VBA.
They represent values that may change during the procedure and identify a unique location in memory.
The syntax is Dim/Public/Private VariableName [As type]. eg:
Public SalesPerson As String
Hope this helps
Carlos