View Single Post
  #6  
Old September 23rd, 2009, 07:00 PM posted to microsoft.public.access.tablesdbdesign
Gina Whipp
external usenet poster
 
Posts: 3,500
Default Student course Registration setup

UnknownJoe,

If I am understanding you correctly... This would be my third table:

tblRegistrations
rStudentID
rCourseID
rStartDate (if not in tblCourses)
rDropped
rAudit
rAdditionalNotes
etc... BUT no fields that are included in tblStudents or tblCourses

Then in a subform you can select (register) students, either by Course (make
that the main form OR just make this your main form and proceed to register
Students and run reports to show who has registered for what.

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" - Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"UnknownJoe" wrote in message
...
I have 2 tables at this time. One is called Students, with a Student ID,
First Name and Last Name. The 2nd is called Courses, with only Course
Name.

Within the 3rd table, which is what I'm looking at ideas for, is a Table
and
Form to be called Registrations. Basically, I want to do the following on
the
form:

(1) Choose a Course (from Course table)
(2) Choose a Start and End Date
(3) Select any number of Students (from the Student table)

I would prefer to have the form open and select a course, then proceed to
select and add students (ex. 1 - 20 students). I guess the problem would
be
that each time I add an additional student, it would need to add another
record to the Registration table.

Thanks.

"Gina Whipp" wrote:

UnknownJoe,

Just realized you said you already had the tables, you are just looking
for
Registration ideas. Well, what tables do you already have? It sounds
like
you just need a *Join* table with a few additional fields but you might
already have one but without more data can't be sure.

--
Gina Whipp

"I feel I have been denied critical, need to know, information!" -
Tremors
II

http://www.regina-whipp.com/index_files/TipList.htm

"UnknownJoe" wrote in message
...
I have a small DB with tables for Student info and Course Info. The main
purpose of the DB is to be able to combine the two and create a
Registration
table (and Form) that allow the user to select a current Course, Dates,
and
then enroll or register as many students as necessary on the one form
that
will create a record for each in the Registration table.

Any ideas would be appreciated.

Thanks.

JS