Andy has attended:
Excel VBA Intro Intermediate course
VBA
What is the definition of a variable?
VBA Variables
Hi Andy
A variable is a name used to represent a value. A variable name identifies a unique location in memory where a value may be stored temporarily
The syntax is Dim VariableName As Type eg
Dim OrderDate as Date
Regards
Carlos