Hello.
I was hoping some could show me how I could only append records that are not already in the table. Just the unique records. I have field named SeqOrder that counts number of records (autonumber) but outside of this field if the rest already exist I don't want the record to append to the table. Records are being appended one at a time. I look online for the solution and it seemed like I would have to do a inner join or something but I didn't quite understand it. Here is my sql for my append query.
Code:
INSERT INTO Taxable_Facility ( PropertyID, TaxDue, DueDate, PaidDate )
SELECT [Table1].PropertyID, [Table1].TaxDue, [Table1].DueDate, [Table1].PaidDate
FROM [Table1]
WHERE ((([Table1].PropertyID)=[Forms]![Taxable_Facility_Form]![PropertyID]));
I've tried making it select distinct but that didn't work.
Thanks in advance.