FORMULA LANGUAGE


Examples: @Failure
This example show an input validation formula. It returns the error message "Area codes have only 3 digits" if the user enters a number greater than 999 in the field named AreaCode.

@If(AreaCode<1000;@Success;@Failure("Area codes have only 3 digits"))

See Also