Gemma has attended:
Excel VBA Intro Intermediate course
Excel VBA Intro Intermediate course
Excel vba
What is a Variable
RE: excel vba
Hi Gemma
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:
Dim Counter As Integer
Hope this helps
Carlos