What I want to do is this.
Sub CompleteForm()
Dim SomeVal As Interger
SomeVal = SomeOtherSub()
End
Private Sub SomeOtherSub()
Some test performed here
Return PerformedTestValue
End
If I can find a Working example of something like this it would be great. I hate having so many Global Variables at the top of my code.
Sub CompleteForm()
Dim SomeVal As Interger
SomeVal = SomeOtherSub()
End
Private Sub SomeOtherSub()
Some test performed here
Return PerformedTestValue
End
If I can find a Working example of something like this it would be great. I hate having so many Global Variables at the top of my code.