LibreOfficeDev 24.2 Help
Ebzjt‖Allows you to define parameters that are passed to a function as optional.
sshCf‖See also: IsMissing
FCbGu‖Function MyFunction(Text1 As String, Optional Arg2, Optional Arg3)
PWFN7‖Result = MyFunction("Here", 1, "There") ' all arguments are passed.
QD4Cn‖Result = MyFunction("Test", ,1) ' second argument is missing.
FaFyC‖See also Examples.