To declare a variable in VBA use the Dim (short for Dimension) statement. : Variable Declaration « Language Basics « VBA / Excel / Access / Word






To declare a variable in VBA use the Dim (short for Dimension) statement.

 
Sub inttype()
    Dim myVar As Integer
End Sub

 








Related examples in the same category

1.Declaring Variables
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