I
Ian
I am including an append query to copy the Unique Key from a form to another
table for reference in certain circumstances. I have an append query that
causes a key violation and I have no idea why.
The clientID is the Unique key to the main table and is just a number field
to the Tbl_ICContacts
INSERT INTO Tbl_ICContacts ( ClientID )
SELECT Main.ClientID
FROM Main
WHERE (((Main.ICNumber)=[forms].[frm_main].[ICNumber]));
table for reference in certain circumstances. I have an append query that
causes a key violation and I have no idea why.
The clientID is the Unique key to the main table and is just a number field
to the Tbl_ICContacts
INSERT INTO Tbl_ICContacts ( ClientID )
SELECT Main.ClientID
FROM Main
WHERE (((Main.ICNumber)=[forms].[frm_main].[ICNumber]));