Declaring Variables : Variable Declaration « Language Basics « VBA / Excel / Access / Word






Declaring Variables

 
Sub DeclareVariable()
    Dim myVar As Integer
End Sub

 








Related examples in the same category

1.To declare a variable in VBA use the Dim (short for Dimension) statement.
2.Variable declaration is required with Option Explicit and a module level variable (answer) is declared.
3.Forcing Declaration of Variables: Option Explicit
4.If you're going to declare multiple variables on one line, make sure each variable is specifically declared
5.Variables can also be declared in the declarations section at the top of a module