Here is what I have. I have a list of participants for a gymkhana (equestrian
event) and we have a data base with all the participants in it. Some
participants have not shown up for several gymkhanas yet my database will
always add there name when I print the participant list. I would like to have
the database not print those names of participants who have not participated
in the last several gymkhanas.
Is there a way to filter what names are printed to not include the names of
participants who have not participated in the last several gymkhanas?
Does your database contain a table listing which events each member has
attended? I would expect at least three tables: Participants, Gymkhanas
(listing the date and venue of the event), and Participation. If you have
this, you can create a query using a NOT IN () criterion to select
participants who were Not In a selected set of gymkhanas - chosen by date.
What's the structure of your tables? We can help design the query if we can
see what we're working with!
John W. Vinson [MVP]