I have a database with election data and each time a person votes it is a new record (I didn't create the database)
How can I query it to find out who voted in 2004 but not in 2002 etc.
I'm using access 2000
Thanks
SELECT query is what you need. I would try the query wizard and see if it will walk you through the process. But basically you will need a criteria of VotingDate BETWEEN 01/01/2004 AND 12/1/2004 or something like that to do date selection.