Are the variables being used within the same module?
If so, set Dim the variable at the top, outside the actual Function, Private Sub, or Sub in which it is set.
That way it is usable by all the code within that module.
However, if they are being used across different modules, you need to make...