Public Variables : Variable Scope « Language Basics « VBA / Excel / Access / Word






Public Variables

 
Option Explicit
Public slsTax As Single

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

 








Related examples in the same category

1.Local variable
2.Procedure-Level (Local) Variables
3.module-level variable declared with Private statement
4.Understanding Module-Level 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