Examples of Number Functions
Number functions are used in a data validation function.
Function | Description | Sample |
---|---|---|
range |
The validation function checks that the attribute value is between the given date range. If the validation is met then the appropriate validation message is displayed. |
|
equals |
The validation function checks that the attribute value exactly matches the given static number. If the validation is met then the appropriate validation message is displayed. |
|
gt |
The validation function checks that the attribute value is greater than the given static number. If the validation is met then the appropriate validation message is displayed. |
|
gte |
The validation function checks that the attribute value is greater than and equal to the given static number. If the validation is met then the appropriate validation message is displayed. |
|
lt |
The validation function checks that the attribute value is lesser than the given static number. If the validation is met then the appropriate validation message is displayed. |
|
lte |
The validation function checks that the attribute value is lesser than or equal to the given static number. If the validation is met then the appropriate validation message is displayed. |
|
exists |
The validation function checks that the given attribute value exists. If the validation is met then the appropriate validation message is displayed. |
|
missing |
The validation function checks that the given attribute value is missing. If the validation is met then the appropriate validation message is displayed. |
|