Optional (in Function Statement) [Runtime]/text/sbasic/shared/03104100.xhpSun Microsystems, Inc.converted from old format - fpeOptional functionOptional (in Function Statement) [Runtime]Allows you to define parameters that are passed to a function as optional.See also: IsMissingSyntax:Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)Examples:Result = MyFunction("Here", 1, "There") ' all arguments are passed.Result = MyFunction("Test", ,1) ' second argument is missing.See also Examples.