I am creating a donor database that has a main "Contacts" table which contains all the basic contact information (First Name, Last Name, Company Name, Address, City, State, Zip Phone) with an Autonumber ContactID as the primary key field. The related table is Donations where we track all donations by any contact. A contact has to exist in the contact table to enter a donation in the donation table.
I have a form for entry of New Contacts, but a person can be enered twice if, for some reason I cannot understand, the data entry person is not familiar with all 2700 people already on the list.
Is ther a way to make sure that a contact is really NEW and not a duplicate either through the Form or the Table. A true duplicate would have the same name AND address (we have people with the same name and different addresses)
Is there some way to cause a Before Updaate Procedure that compares FirstName, LastName and Address to the Contacts Table to see if one record contains all three and then use a message warning if they do to make sure this is nto a dupolicate entry ? (an If Then statement of some kind) ?
I have a form for entry of New Contacts, but a person can be enered twice if, for some reason I cannot understand, the data entry person is not familiar with all 2700 people already on the list.

Is there some way to cause a Before Updaate Procedure that compares FirstName, LastName and Address to the Contacts Table to see if one record contains all three and then use a message warning if they do to make sure this is nto a dupolicate entry ? (an If Then statement of some kind) ?
Last edited: