I am creating a database for use in an educational institution. One form (frmCourseInfo) contains fields for the user to enter the following: course description, course abbreviation, course number, and if the course is still being offered. The last field is a check box called "Deleted." Another form (frmCoursesAndFaculty) allows the user to assign instructors to the courses. On this form a combo box displays the courses entered using frmCourseInfo. This is working fine. However, the user wants the drop down list of the combo box to display only the courses that are NOT marked "deleted" on frmCourseInfo. I set the combo box criteria to display the courses where the delete field = 0. This works for the drop down list of the combo box, but it displays a "blank" combo box on the form for any courses that were taught in the past and have since been deleted. Is there a way to display the course information (both current and past) in the combo box itself but limit it's drop down list to only the current courses?