AndeanWayne
Registered User.
- Local time
- Today, 03:48
- Joined
- Jan 21, 2012
- Messages
- 27
My database has a table tblCombinedPropInvest which is a temporary table. Four of the fields in this table are Tax year, State, County and PIN Number. These fields are entered in a data entry form. When all entry is made and append query calculates a PropertyID field and the records are appended to a table named tblCombinedPropInvestComplete. Then the records in the temporary field are deleted. The PropertyID field (Taxyear+state+county+PIN) is the Key field in the complete table. My problem is if an error is made in data entry on the temp table it is possible to create a duplicate PropertyID when the append query runs. If this happens the record is simply dropped and the daata entry person never knows it happened. If I remove the key field I can have a report show there are duplicate PropertyIDs but then there is no Primary Key field in the complete table. Help.