A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

forms



 
 
Thread Tools Display Modes
  #1  
Old September 29th, 2004, 09:16 PM
Richard McCray
external usenet poster
 
Posts: n/a
Default forms

I want to create a form in ACCESS that will allow me to
enter multiple items under several fields in one record.
For example, I have a record for one person but want to
list several courses for each person. Such as:

Name courses
John Music
history
Psycholgy
That is an abbreviated version of what I want. Hope
someone can help. thanks
  #2  
Old September 29th, 2004, 09:48 PM
rowiga
external usenet poster
 
Posts: n/a
Default

You'll need at last two tables, possibly three to do what
you want.

One table would store general information about each
student or as a minimum store each student's name. I would
suggest including a field called something like StudentID.

Another table would store the names of all of the classes
that could be selected. I would suggest having a field
called comething like CourseID.

Another table would link the two of these tables together
and would store the StudentID and all of the CourseID's
that a particular student is enrolled in.

What you end up with is something like this:

Student Table
-------------
StudentID FirstName LastName
01 John Doe
02 Tom Miller
03 Sandy Duncan
etc....

Course Table
------------
CourseID CourseName
01 Geology
02 History
03 Biology
04 Meteorology
etc....

Enrollment Table
----------------
StudentID CourseID
01 02 (Shows that John Doe has History)
01 04 (Shows that John Doe has Meteorology)
03 01 (Shoes that Sandy Duncan has Geology)
03 02 (...etc...)
02 01
02 02

I would suggest making the primary key for the enrollment
table a combination of StudentID and CourseID.

You could make a main form for the student information and
then have a subform to choose which courses the student is
enrolled in. As each student record is chosen, the
appropriate courses that they're enrolled in will fill in
on the subform. As far as selecting the courses, make a
combo box on the enrollment subform that queries the
Courses table.

-----Original Message-----
I want to create a form in ACCESS that will allow me to
enter multiple items under several fields in one record.
For example, I have a record for one person but want to
list several courses for each person. Such as:

Name courses
John Music
history
Psycholgy
That is an abbreviated version of what I want. Hope
someone can help. thanks
.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
forms in Outlook 2003 Marty Leaf General Discussion 1 August 18th, 2004 06:13 PM
datasheet forms open in form mode from the Switchboard Paul James Using Forms 5 July 13th, 2004 06:51 AM
Data entry forms and/or subforms Hugh Crean Using Forms 2 July 8th, 2004 05:56 PM
Forms Check Box not working DLLower General Discussion 2 June 17th, 2004 09:34 PM
matching multiple forms on open to form records EdwardA Using Forms 0 June 10th, 2004 06:38 PM


All times are GMT +1. The time now is 11:45 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.