module-level variable declared with Private statement : Variable Scope « Language Basics « VBA / Excel / Access / Word






module-level variable declared with Private statement

 

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

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

 








Related examples in the same category

1.Local variable
2.Procedure-Level (Local) Variables
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