DVF number functions
Number functions are used in a data validation function.
Use number functions in Data Validation Functions to validate attributes that are composed of numeric characters.
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. This function supports the NOT conditional operator. |
|
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. This function supports the NOT conditional operator. |
|
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. This function supports the NOT conditional operator. |
|
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. This function supports the NOT conditional operator. |
|
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. This function supports the NOT conditional operator. |
|
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. |
|