Dylan B. answered 11/10/20
Tutor
New to Wyzant
Computer science Tutor, Associates degree, Real world experience
Yes, you can. Artificially simple example:
Function SumSum(a as decimal, b as decimal) as decimal
Dim c as Decimal
c = a + b
Return c
End Function
Function OtherFunction(a as decimal, b as decimal) as decimal
Dim c as Decimal
c = SumSum(a,b)
Return c
End Function
OtherFunction will use the SumSum function to sum a and b.