Hi jreed72,
I would suggest rearranging the tables/keys this way:
Code:
tblMovie (Parent table)
MovieID - (PK)
Movie name
movie year (many to 1 to yrlookup)
Movie genre (many to 1 to genre lookup)(combo box multichoice)
Movie rating (many to one to rating lookup)
format (many to one to format lookup)
tblPeople (Parent table)
PersonID - (PK)
first name
last name
comments
tblCrew (Child table)
CrewID - (PK)
MovieID - (FK)
PersonID - (FK)
roles played (many to one to roles lookup table)(combo box multi choice)
character name
comments
This should prevent any redundancies in tblMovie and tblPeople. Keeping the CrewID as a separate PK in tblCrew will also allow you to let one person play two (or more) roles in the same movie (actors love to direct). Another benefit will be the option of setting up a mainform/subform with tblMovie & tblCrew as well as the same thing for tblPeople & tblCrew.
Cheers,