Hello all,
The breakdown: I have two tables, Table1, and Table2. Table2 is linked to Table1 by a one to many relationship, meaning Table2 has a foreign key(multiple Table2 records for one Table1 record).
In Table1 I have a Yes/No field named [Completed].
I have a delete query that runs through Table 1 and deletes records that have [Completed] checked as "Yes."
The problem:
I'm trying to make another delete query that runs on Table2, and deletes the records that are linked to Table1 that has the field [Completed] checked "Yes"
Any help would be great!
Thanks