A
Andy
Hi Gang
I need some help with variables with functions. I've got a main
function that does some processing with a variable MyValue. I need to
create a sub function that changes the value of MyValue so that when
the sub function is done the main function knows what the new value of
MyValue is. How do I do this???
Please help,
Andy
Public Sub MyMainFunction()
MyValue = 10
Call MySubThatChangesMyValue
...more processing that relies on the changed MyValue...
End Sub
I need some help with variables with functions. I've got a main
function that does some processing with a variable MyValue. I need to
create a sub function that changes the value of MyValue so that when
the sub function is done the main function knows what the new value of
MyValue is. How do I do this???
Please help,
Andy
Public Sub MyMainFunction()
MyValue = 10
Call MySubThatChangesMyValue
...more processing that relies on the changed MyValue...
End Sub