Is there a clever way of storing variables globally so that you can call them at any of the modules at anytime?
Example
Dim pwd As String pwd = "password" Private Sub Test() MsgBox (pwd) End Sub Thanks
Your example is a constant.
Public Const pwd as String = "password" Declare it on top of a standard module.
For other solutions with subs, functions or properties look at the Related-Section on the right side of the page.