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 » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Activity Database --> Need some guidance



 
 
Thread Tools Display Modes
  #1  
Old May 24th, 2005, 05:40 PM
blakf02
external usenet poster
 
Posts: n/a
Default Activity Database --> Need some guidance

Hello, to anyone who is willing to help, I am in desperate need of a
little guidance with an issue I am facing.
I was hoping that I could be
pointed in the right direction for help on a Microsoft Access
Database.
The challenge is to create a list of Activities where a user signs in
to
select their desired preferences. Each activity has a limited number
of
students who can take part in the activity. How do I save the
preferences
for each student and then sort of out the ones which are over the
maximum number of students.
Once a student has submitted their preferences, the database is
scanned and if there are still some vacancies in this activity the
student is notified and their name is removed from a student list, if
it is unsuccessful they are then asked to select from a list of
available activities. at the end of selection process there will
exista list on which will lie the students who have yet to submit a
preference.
It is a major task and I need some major help!!
thanks to all

Sarah
I have MSN for those willing to help.

  #2  
Old May 24th, 2005, 06:33 PM
tina
external usenet poster
 
Posts: n/a
Default

you posted an identical message in microsoft.pulic.access.modulesdaovba at
9:41 AM this day. *please don't multi-post.* it wastes everybody's time, and
server resources. if you feel you really need to post to more than one
group, then crosspost - that is, put both newsgroup addresses in the address
line of one post, separated by a colon.

nobody can tell you how to build an entire database in a newsgroup post. if
you want specific help, you need to ask a specific question. if you're not
sure where to begin in building your db, the answer is: begin by defining,
relating, and creating all your tables. when that's done, move on to
queries, forms, and reports. hint: the first step is by far the most
important step. do it right, and the rest of the db is much, much, much
easier to build.

suggest you see the list of links at
http://www.ltcomputerdesigns.com/JCReferences.html
starting with the "Database Design 101" and "Starting Out" links.

hth

"blakf02" wrote in message
...
Hello, to anyone who is willing to help, I am in desperate need of a
little guidance with an issue I am facing.
I was hoping that I could be
pointed in the right direction for help on a Microsoft Access
Database.
The challenge is to create a list of Activities where a user signs in
to
select their desired preferences. Each activity has a limited number
of
students who can take part in the activity. How do I save the
preferences
for each student and then sort of out the ones which are over the
maximum number of students.
Once a student has submitted their preferences, the database is
scanned and if there are still some vacancies in this activity the
student is notified and their name is removed from a student list, if
it is unsuccessful they are then asked to select from a list of
available activities. at the end of selection process there will
exista list on which will lie the students who have yet to submit a
preference.
It is a major task and I need some major help!!
thanks to all

Sarah
I have MSN for those willing to help.



  #3  
Old May 24th, 2005, 06:52 PM
Josh Nankivel via AccessMonster.com
external usenet poster
 
Posts: n/a
Default

Some of your message is a bit truncated and I can't understand all of it.
But it sounds like you want the following:

tblActivities - strActivity, intMaxStudents
tblStudentsActivities - strLName, strFName, strActivity
tblStudents - whatever student info you need

When they select an activity, base the rowsource for a combo box off of a
query where you do a count for each activity in the tblStudentsActivities
table and compare that to intMaxStudents. So the query only shows
activities from tblActivities where intMaxStudents Count
(tblStudentsActivities.strLName)....you get the idea. That way, after the
max number is reached for an activity it won't be an option to choose
anymore (make sure the limit to list property is set to yes)

You should be able to just do an unmatched query between tblStudents and
tblStudentsActivities to report who didn't make any selections yet.

--
Message posted via http://www.accessmonster.com
  #4  
Old May 24th, 2005, 08:13 PM
tina
external usenet poster
 
Posts: n/a
Default

good suggestions, Josh.
one note: under data normalization rules the student's first and last name
fields would go in tblStudents, because those data elements describe a
student. tblStudents should have a primary key field, which would be used as
a foreign key in tblStudentActivities, to link each record to a specific
student record.

hth


"Josh Nankivel via AccessMonster.com" wrote in
message news:1129aff587824b86b7095b75e60d2a6d@AccessMonste r.com...
Some of your message is a bit truncated and I can't understand all of it.
But it sounds like you want the following:

tblActivities - strActivity, intMaxStudents
tblStudentsActivities - strLName, strFName, strActivity
tblStudents - whatever student info you need

When they select an activity, base the rowsource for a combo box off of a
query where you do a count for each activity in the tblStudentsActivities
table and compare that to intMaxStudents. So the query only shows
activities from tblActivities where intMaxStudents Count
(tblStudentsActivities.strLName)....you get the idea. That way, after the
max number is reached for an activity it won't be an option to choose
anymore (make sure the limit to list property is set to yes)

You should be able to just do an unmatched query between tblStudents and
tblStudentsActivities to report who didn't make any selections yet.

--
Message posted via http://www.accessmonster.com



 




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
Database Activity dlmsaw General Discussion 1 May 21st, 2005 12:04 AM
Encrypt AccesS File? milest General Discussion 2 February 9th, 2005 07:58 PM
Images in a database Franz General Discussion 10 October 7th, 2004 09:35 AM
Database periodically needs rebuild and locks users out spectrum General Discussion 2 July 13th, 2004 06:24 PM
Mutliple Tables lookup? Westley Database Design 4 June 15th, 2004 01:07 AM


All times are GMT +1. The time now is 03:44 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.