Hi and thanks for reading.
I work for a company which puts up posters for events in lots of different shops etc around my city. Every day I choose which posters should be put up I am trying to make a database I can query to see which posters have not been put up recently so need to be sent out now. I have a database with two tables: Posters, a list of all the posters and their ID number. The ID number can be shared by several posters and the names are all unique so the name is the primary key.
The other table, PosterDays, is has the fields ID (autonumber primary key), Day (which is the date a poster was put up on) and Poster (the name of the poster). Each record is one poster put up on one day. The Poster field is looked up from Posters.Poster_Name so there is a 1:many relationship.
I want to search for all the Posters in Poster_Name which have not been put up recently or even at all. How can I do this?