How can you define a variable that will be recognized in every sub within a module?
How can you define a variable that will be recognized in every sub within a module?
define it at the top of the module, before any sub
![]()
Public mee as long
Declare the variable with Public at the top of the module, after Option Explicit (if you use that) and before any Subs or Functions.
Example:
Does that help?![]()
Option Explicit Public myVariable Sub Something() End Sub
Hmmm. I'm still not getting it. Here is the sub that defines my variable. The other subs in the same module didn't recognize the variable.
![]()
Option Explicit Public myVariable Dim RNG As Long Sub Define_RNG() Dim LastRow As Long Dim Lastcolumn As Long Sheets("Raw Data - All").Select LastRow = Range("B" & Rows.Count).End(xlUp).Row Lastcolumn = ActiveSheet.UsedRange.End(xlToRight).Column Dim RNG As Range Set RNG = Range(Cells(1, 1), Cells(LastRow, Lastcolumn)) RNG.Select End Sub
Hi,
As shg has suggested you should understand the separate and distinct concepts of Scope & Lifetime (or visibility)
You have declared
1. A Public variable called myVariable. This is available across all procedures in all modules in the project.
2. A Module level variable called RNG. This is available in all procedures in the Module in which it resides.
3. A Procedure level variable called RNG. This is only available in the Define_Rng procedure
Which procedures in which Module are not recognising which variable?
Incidentally it's generally considered good practice to preface your variable name with an indicator as to the type of variable it is. We all have our own favourites, but generally something like
Dim stMonthName As String ' using st to indicate a string variable
Dim rMyRange As Range ' using r to indicate a range variable
Dim lLastRow As Long ' using l to indicate a Long variable
Dim bMyFlag As Boolean ' using b to indicate a True/False boolean variable.
Richard Buttrey
RIP - d. 06/10/2022
If any of the responses have helped then please consider rating them by clicking the small star iconbelow the post.
Remove the declaration in the sub.
See Help for Understanding Scope and Visibility
Entia non sunt multiplicanda sine necessitate
OK. What do you mean by declaration? You mean the DIM lines? And what do you mean by help? Help where?
YesWhat do you mean by declaration? You mean the DIM lines?
Help in the Visual Basic EditorHelp where?
Why do I still not get this. The Excel help menu states that the default for a variable is Private. Can be used within the module. I even copied the examples they give into my module and the variables are only local to the sub.
![]()
Public Sub InitializePrivateVariable() Dim StrMsg As String StrMsg = "This variable can be used outside this module." MsgBox StrMsg End Sub Sub UseThisFreakinVariable() MsgBox StrMsg End Sub
if you declare a variable within a procedure it is only visible to that procedure
![]()
Dim StrMsg As String Public Sub InitializePrivateVariable() StrMsg = "This variable can be used outside this routine but within this module." MsgBox StrMsg End Sub Sub UseThisFreakinVariable() MsgBox StrMsg End Sub
Josie
if at first you don't succeed try doing it the way your wife told you to
A public variable is declared at the top of a standard code module, above all procedures (just below Option Explicit), using the key word Public instead of Dim. It is visible to all procedures in the VBA project unless (1) a module-level variable of the same name is declared in another module, or (2) a procedure declares a variable of the same name. Once initialized, its value(s) persist until the VBE is reset manually or via an End statement.
A module-level variable is also declared at the top of a standard code module, also above all procedures (just below Option Explicit), using the key word Private or Dim. It is visible to all procedures in the module unless they declare a variable of the same name. Once initialized, its value(s) persist until the VBE is reset manually or via an End statement.
A local variable is declared in the body of a procedure, always using the key word Dim. It can be declared anywhere in the module prior to its first reference. It is visible only within the procedure, and is destroyed when the procedure exits.
This is all pretty well explained in Help.
Last edited by shg; 03-02-2013 at 05:55 PM.
For some reason the excel help explanations were confusing to me. Your explanation is completely clear and I thank you shg and JosephP. And to everyone early when I was being dense.
You're welcome.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks