I need to call a lotus script function from Lotus Formula.
The function returns a result. I do not just want to run a script which does not return any value.
This is for Lotus Notes 7.
Example
LotusScript Functions:
Function isName( name As String) as Boolean
if name Is "Danny" Then
isName = true
endif
isName = false
End function
LotusFormula
name := getName("troy")???????
therefore I can then use the name in lotus formula.
Is this possible?