If you're going to declare multiple variables on one line, make sure each variable is specifically declared : Variable Declaration « Language Basics « VBA / Excel / Access / Word






If you're going to declare multiple variables on one line, make sure each variable is specifically declared

 
Sub dSub()
    Dim intCounter As Integer, intAge As Integer, intWeight As Integer
End Sub

 








Related examples in the same category

1.Declaring Variables
2.To declare a variable in VBA use the Dim (short for Dimension) statement.
3.Variable declaration is required with Option Explicit and a module level variable (answer) is declared.
4.Forcing Declaration of Variables: Option Explicit
5.Variables can also be declared in the declarations section at the top of a module