Return Instruction
Syntax
Return
-or-
Return expr
Group
Description
The return instruction without an expression causes the Sub block to exit. The return instruction with an expression causes the Function/Property block to exit with the value of the expr.
VBA
This language element is not VBA compatible.
Example
Sub Main
Debug.Print Func(2) ' 6
End Sub
Function Func(N)
Return N*3
End Function