FORMULA LANGUAGE


Examples: @Set
This formula determines whether the FirstName field is blank. If so, it sets the variable FullName to the concatenation of the Title field with the LastName field, as in "Ms. Tsen." If the FirstName field contains a value, the variable FullName is instead set to the concatenation of the FirstName with the LastName, as in "Mary Tsen."

Full Name:="";
@If(FirstName="";@Set("FullName";Title+" "+LastName);  @Set("FullName"; FirstName+" "+LastName))

See Also