- ALL
The ALL function evaluates a series of conditions and returns "true" if they all evaluate to "true"; otherwise returns "false".
- BINDABS
Use this function in a component rule for the implementation of binding and iterative evaluation.
- EITHER
The EITHER function returns the result of the first argument that does not evaluate to "none".
- IF
You can use the IF function for conditional logic.
- ISALPHA
You can use ISALPHA when you need to know whether a text string is all alphabetic characters.
- ISLOWER
The ISLOWER function tests a text object to see if it contains all lowercase alphabetic characters.
- ISNUMBER
The ISNUMBER function tests a text object to determine whether it contains all numeric characters.
- ISUPPER
The ISUPPER function tests a text object to determine whether it contains all uppercase alphabetic characters.
- NOT
Use the NOT function to test a condition and have it return the inverse of its "true" or "false" result. For example, you want the function to return "true" if the condition results in "false".
- OR
Use the OR function to test whether one of a series of conditions is true.
- WHEN
You can use the WHEN function in a component rule to test for the validity of one object based on another object.