@Success (Formula Language)

Returns 1 (True). Use this function with @If in field validation formulas to indicate that the value entered satisfies the validation criteria.

Syntax

@Success

Return value

true

Number. The number 1, meaning True.

Usage

Use @Success in input validation formulas for editable fields.

Examples

This example returns 1 and allows the document to be saved when the value in the field Price is less than 100. This indicates that acceptable data was entered when used in an input validation formula.
@If(Price<100;@Success;@Failure("Price too large"))