My Balance table has an BalanceID field as Autonumber type. This Autonumber field is not a primary key.
It's just an identifier for a composite key (as primary key) that includes 3 fields. These fields are:
1. Social security number
2. Type
3. SubType
I cannot use the social security number field as a primary key because a person can have more than 1 balances with different types. There are also more than 1 balances with the same type.
I need to avoid users from entering duplicate records. I need help with matching all existing records in the
Balance table, then let users know the record already exists and stop them from entering duplicate records.
Please help. Thank you so much.
It's just an identifier for a composite key (as primary key) that includes 3 fields. These fields are:
1. Social security number
2. Type
3. SubType
I cannot use the social security number field as a primary key because a person can have more than 1 balances with different types. There are also more than 1 balances with the same type.
I need to avoid users from entering duplicate records. I need help with matching all existing records in the
Balance table, then let users know the record already exists and stop them from entering duplicate records.
Please help. Thank you so much.