...
Type: Value must be
Field Is Greater Than Or Equal
Name: The name of the field to evaluate.
Value: The value to compare against the field's current value. Must be an integer.
Optional Properties
None
Evaluation
True
: The field's current value is greater than or equal to the comparison value.False
: The field's current value is less than the comparison value.
Example
Verify whether the Age field is greater than or equal to 18.
...
Type: Value must be
Field Is Empty
Name: The name of the field to evaluate.
Optional Properties
None
Evaluation
True
: The field has no value.False
: The field has a value.
Example
Verify whether the current record is missing a Description.
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Evaluation
True
: The field's current value is equal to the comparison value.False
: The field's current value is not equal to the comparison value.
Example
Verify whether the Category field is set to Bug.
...
Type: Value must be
Field Is Less Than Or Equal
Name: The name of the field to evaluate.
Value: The value to compare against the field's current value. Must be an integer.
Optional Properties
None
Evaluation
True
: The field's current value is less than or equal to the comparison value.False
: The field's current value is greater than the comparison value.
Example
Verify whether the Age field is less than or equal to 18.
...
Type: Value must be
Field Is Not Empty
Name: The name of the field to evaluate.
Optional Properties
None
Evaluation
True
: The field has a value.False
: The field has no value.
Example
Verify whether the current record has a Description.
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Evaluation
True
: The field's current value is not equal to the comparison value.False
: The field's current value is equal to the comparison value.
Example
Verify whether the Category field is not set to Bug.
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behavior when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Evaluation
True
: The field's current value is not equal to one of the comparison values.False
: The field's current value is equal to one of the comparison values.
Example
Verify whether the version number in the Revision Number field is not equal to 1, 2, or 3.
...
Ignore Case:
Yes
orNo
; Ignore case-sensitivity during the comparison.No
is the default behaviour when this property is omitted. (i.e. Comparisons are case-sensitive by default.)
Evaluation
True
: The field's current value is equal to one of the comparison values.False
: The field's current value is not equal to one of the comparison values.
Example
Verify whether the version number in the Revision Number field is equal to 1, 2, or 3.
...