Hello guys,
I've been having trouble getting global variables to work.
Module1 code:
Option Explicit Public Test As Variant
Sub init()
test = 2
Call testing
End Sub
Module2 code:
Option Explicit Sub Testing()
test = 3
End Sub
All i want is to throw over my test variable value and update it...