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.
Sub Call_Function_Example()
dim myVar as string
myVar = Range("A1").text
Call thefunction(myVar)
End sub
Function theFunction(VariableTest) as string
'Do stuff with 'VariableTest' which will be = myVar
theFunction = Result
End Function