Procedure-Level (Local) Variables : Variable Scope « Language Basics « VBA / Excel / Access / Word






Procedure-Level (Local) Variables

 
Option Explicit
Dim slsTax As Single      ' module-level variable declared with Dim statement

Sub CalcCost()
    '...Instructions of the procedure...
End Sub

 








Related examples in the same category

1.Local variable
2.module-level variable declared with Private statement
3.Understanding Module-Level Variables
4.Public Variables
5.Understanding and Using Static Variables
6.sub module scope
7.Module level variable
8.Local variables are available only in the procedure where they are declared
9.Private module variable