I've been on this all day and I'm still clueless. This is the SQL code.
Code:
INSERT INTO JobT ( Job_Notes )
SELECT z_append_1.[append_1] & " " & [job_notes] AS test
FROM JobT INNER JOIN z_append_1 ON (JobT.Job_ID = z_append_1.Job_ID) AND (JobT.Job_ID = z_append_1.Job_ID)
WHERE (((z_append_1.Note_ID)=[Forms]![z latest]![z_append_1 Subform].[Form]![Text4]));
I CAN get the data I want in the query but if the query is closed when I press the command button, I get a message that says It cant add the record because of a key violation.
But even having the data in the query (when its open) isnt enough. I need it to update the table.
Im sure its not meant to be this hard but it's one of the most difficult things ive done in access haha. If you could offer any more help i would appreciate it.