This Name is Already in Use Error

You used a variable name in a Dim statement that has already been declared in another Dim statement or as a property. Or, you tried to declare a property with the same name as another property.


Example

Dim a,b as Double
Dim b as Double //already in use

See Also

Dim statement.