Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
...
msgbox YourFunction(arg1, arg2)
...
Sub ReturnTwoValues(ByRef Value1 as String, ByRef Value2 as String)
Value1 = "Monday"
Value2 = "Friday"
End Sub
Sub CallingProc()
Dim StartDOW as String, EndDOW as String
ReturnTwoValues StartDOW, EndDOW
End Sub