You can define a "Public" variable in the definitions section above the subs ina module. Itis then available to all subs and functions.Like thisPublic strName As StringSub DoWhatever()...strName = YourCodeHere...End Sub