With data integrity, your data conforms to certain rules that you apply during data entry.
The program will notify the user if the data entered on the form does not comply with the
validation rules that you have set, and will not allow the data record to be saved until it
does comply. Examples of data validation rules are:
- The data entered must come from a list of values that you supply, such as "low, medium, high," "red, green, blue," "NY, NJ, ND," etc.
- The data must be in a certain format, such as xxx-xx-xxxx for a social security number, or xxx@xxxx.xxx for an e-mail address
- A date must be valid (1/52/2007 is not valid), or be either greater or less than today's date
- The data must be within a size range (so the address will fit on the label)
- The data field may not be left blank (contact name is required)
- Duplicate entries are not allowed, based on one piece of data (contact name) or more than one (date and ID number)