It should have an 'AutoNumber' ID field (column) as primary key. (So should your movie table)
Other fields would be her name and any other stats you'd like to keep.
Create another table that acts as a 'mapper' table between your movie table and your actress table.
It should have two fields. One that contains the ID of a record in your movie table, and one that contains the ID of a record in your actress table.
This way you can make as many records in your mapper table as you need, to say which actresses appear in a movie.
To make a search query, use Access' graphical query builder to make one that has the mapper table's fields pointing to the movie and actress tables' ID fields, and filter for the name of the actress you're looking for.
The mapper table could also have more fields if you want to store information about the part an actress played in a particular movie.
Hope that was somewhat intelligible. If not, just ask again (if you dare ).
.
Perhaps you might also want to take a look at a program called DVD Profiler.
A free add sponsored version is available. If I ran Windows, I'm sure I'd be using this program too.


