Ashley has attended:
Excel VBA Intro Intermediate course
VBA
What is a variable?
Variables
Hi Ashley
A Variable is a name that is used to represent a value. Variables are mainly used to represent values that are likely to change during a procedure.
The variable name identifies a unique location in memory where a value may be stored temporarily.
A variable can be declared using the Dim statement as shown below:
Dim MyName As String
It is important to always indicate the data type of the variable.
Hope this helps
Carlos