I have a training db desinged to create classes and maintain employee records of classes attended. With the current db design,when a new class is created, a class title is required to be typed in the "class name" field and then any assignments that are required (ie. Quiz, Test, etc.) have to be individually typed into a subform as well. The only problem is that each class is 2 days long and we offer 5 different classes a week; can have up to 15 different assignments depending on the class.Thats a lot of time typing into the db. So in my attempt to automate this process, I created a table with all the "class titles", and another table with all the possible "assignments" associated with each class title. What I am wanting to do (via subform) is that when a "class" is created, they will first select a "Class Title". Depending on what title they select the "assignments" associated with that title will also be displayed. Can I have a unbound combo box with a drop down list all the "classe titles", and that trigger the associated "assignments" to show in the "assignments subform"? I currently have the "class title" and "assignments" in a join table. (ClassTitleAssignmentJoin)(primary key-"Class_Title_Assignment_Join_ID","Class_Title_ID", and "AssignmentID". And the same join table between the "ClassID" and "ClassTitleID". I hope this is understandable, I am a novice at Access 07