I am trying to delete all records where edits were not applied. i tried this:
DELETE [Table A].*, [Table B].[Form Dln] FROM [Table A] LEFT JOIN qryEditRUGItems ON [Table A.FORM_DLN = qryEditRUGItems.[Form Dln] WHERE (((qryEditRUGItems.[Form Dln]) Is Null));
And access just won’t do it: Cannot delete from table. this occurs when all forms are closed, so I suspect there’s some issue with the syntax. how do you do a batch delete + find unmatched type query?
I tried a WHERE EXISTS but am not very familiar with this so the fact that it didn’t work is not too surprising….I’ll keep working on it, just thought i’d throw it out to the lounge for your viewing pleasure…
TIA