G
Guest
Hi there,
I have a table of people who have signed up for an event. In a second
table, I have a list of the people who signed up but did not participate.
What I want to do is delete the nonparticipants from the signup table so I
have less records to deal with.
I have tried the following but it doesn't work.
DELETE [Copy of Runner].*, [Copy of Runner].RunnerID
FROM [Copy of Runner], tblNonParticipatingRunners
WHERE ((([Copy of Runner].RunnerID)=[tblNonParticipatingRunners]![RunnerID]));
In the grid, I used the RunnerID field from the nonparticipants table as my
criteria but it didn't work.
Any ideas???
Thanks!
I have a table of people who have signed up for an event. In a second
table, I have a list of the people who signed up but did not participate.
What I want to do is delete the nonparticipants from the signup table so I
have less records to deal with.
I have tried the following but it doesn't work.
DELETE [Copy of Runner].*, [Copy of Runner].RunnerID
FROM [Copy of Runner], tblNonParticipatingRunners
WHERE ((([Copy of Runner].RunnerID)=[tblNonParticipatingRunners]![RunnerID]));
In the grid, I used the RunnerID field from the nonparticipants table as my
criteria but it didn't work.
Any ideas???
Thanks!