Kevin has attended:
Excel VBA Intro Intermediate course
Excel VBA Intro Intermediate course
Variable
What is a varialble?
RE: Variable
Hi Kevin
A Variable is a name used to represent a value.
They are used to 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:
Dim BirthDay As Date
Hope this helps
Carlos