Hello,
I have a "Courses" table and a "Classes" table (1 to many relationship - 1 Course = many Classes). The problem is in my "Classes" Form. I want the "CourseName" field from the "Courses" table as a DISTINCT dropdown box inside my "Classes" form.
Example: If I offer a course in "Interviewing Skills", there are 3 different levels of "Interviewing Skills (listed in three separate rows in my "Courses" table) from which to choose, but for this dropdown box in the "Classes" Form, when I click on it, I only want to see ONE occurrence of "Interviewing Skills".
What I have tried:
Changing the RowSource of the "CourseName" field in the "Classes" form. I had:
Control Source: CourseID
Row Source: SELECT [CourseID], [CourseName] FROM Courses;
Any thoughts?
I have a "Courses" table and a "Classes" table (1 to many relationship - 1 Course = many Classes). The problem is in my "Classes" Form. I want the "CourseName" field from the "Courses" table as a DISTINCT dropdown box inside my "Classes" form.
Example: If I offer a course in "Interviewing Skills", there are 3 different levels of "Interviewing Skills (listed in three separate rows in my "Courses" table) from which to choose, but for this dropdown box in the "Classes" Form, when I click on it, I only want to see ONE occurrence of "Interviewing Skills".
What I have tried:
Changing the RowSource of the "CourseName" field in the "Classes" form. I had:
Control Source: CourseID
Row Source: SELECT [CourseID], [CourseName] FROM Courses;
Any thoughts?