P
Priscilla
What is the best way to accomplish the following? Say I have three tables:
Students (list all students), ClassesOffered (list all classes offered) and
StudentandClasses (list classes student has taken).
Is there a way with in a form/query to display a list of all classes
available along with some type of distinction indicating what classes the
student already took? The student would then select new classes to take for
the next semester. I cannot seem to display things in this manor.
Table: ClassesOffered
dblClassID chrName
1 English 101
2 American Lit
3 Math 101
4 Advance Algebra
Table: Students
dblStudentId chrName
1 Paul
2 Peter
3 Chris
Table: Student and Classes
dblClassID dblStudentId
1 1
1 2
2 1
Anticipate display
Student: Paul
Classes: Class Taken
English 101 Yes (somehow mark this as a class taken as read-only or
different color
American Lit Yes (somehow mark this as a class taken as read-only or
different color
Math 101
Advance Algebra
Thanks in Advance
Students (list all students), ClassesOffered (list all classes offered) and
StudentandClasses (list classes student has taken).
Is there a way with in a form/query to display a list of all classes
available along with some type of distinction indicating what classes the
student already took? The student would then select new classes to take for
the next semester. I cannot seem to display things in this manor.
Table: ClassesOffered
dblClassID chrName
1 English 101
2 American Lit
3 Math 101
4 Advance Algebra
Table: Students
dblStudentId chrName
1 Paul
2 Peter
3 Chris
Table: Student and Classes
dblClassID dblStudentId
1 1
1 2
2 1
Anticipate display
Student: Paul
Classes: Class Taken
English 101 Yes (somehow mark this as a class taken as read-only or
different color
American Lit Yes (somehow mark this as a class taken as read-only or
different color
Math 101
Advance Algebra
Thanks in Advance