Page 6 of 7 FirstFirst 1234567 LastLast
Results 76 to 90 of 93
  1. #76
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901

    So you will just have a table that lists the possible ACT Composite scores and tie a particular one to the student? If so, then it would work, but to keep it simple, you could just have the user enter the actual score, right?

    I thought that you might be breaking out the ACT scores by subject area. That would be a one-to-many relationship.

  2. #77
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    The composite, math, english, writing, and science scores will all be listed.

  3. #78
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    Then you have a one-to-many relationship, so it cannot be included in tblPeople but rather in a related table. You will probably save yourself some time by having a separate table to hold the subject areas/composite names and then junction that. I'll let you give the structute a shot.

  4. #79
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    tblACTTest
    -pkACTTest
    -txtTestType

    tblACTScore
    -pkACTScore
    -longACTScore

    tblACTTestScore
    -pkACTTestScore
    -fkACTTest
    -fkACTScore

    tblPeople
    -bla
    -bla
    -bla
    -fkACTTestScore

    How did I do?

  5. #80
    weekend00 is offline I may not be right
    Windows XP Access 2003
    Join Date
    Aug 2010
    Posts
    1,295
    How can you guys discuss one topic so much and for so long time?

  6. #81
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    Its a project i have to do for work... I figured it would be simple untill the question was asked "Is your database normalized?" and I was like, What the heck is that?.... and we have been rolling along ever since. I am getting close to the end result, I think...

  7. #82
    weekend00 is offline I may not be right
    Windows XP Access 2003
    Join Date
    Aug 2010
    Posts
    1,295
    good luck!

  8. #83
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    tblACTTest
    -pkACTTest
    -txtTestType

    tblACTScore
    -pkACTScore
    -longACTScore

    tblACTTestScore
    -pkACTTestScore
    -fkACTTest
    -fkACTScore

    tblPeople
    -bla
    -bla
    -bla
    -fkACTTestScore

    How did I do?
    This will allow you to only assign 1 test score to a person not many. Hint: junction table.

  9. #84
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    tblACTTest
    -pkACTTest
    -txtTestType

    tblACTScore
    -pkACTScore
    -longACTScore

    tblACTTestScore
    -pkACTTestScore
    -fkACTTest
    -fkACTScore

    tblPeopleATCTestScore
    -pkPeopleACTTestScore
    -fkACTTestScore

    tblPeople
    -bla
    -bla
    -bla
    -fkPeopleACTTestScore

    Is this it?

  10. #85
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    Not quite...

    tblPeopleATCTestScore
    -pkPeopleACTTestScore
    -fkACTTestScore
    -fkPeopleID

    tblPeople
    -bla
    -bla
    -bla
    -fkPeopleACTTestScore (remove)

  11. #86
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    Ok...

    I think i have all my tables in order, and proper relationships in place. I think i am FINALLY done with this table business.

    But before I say that 100%, i need my eyes. If you wouldn't mind, take a look at the tour database I have attached to verify my claim. If it is all set, i think thats the go ahead to possibly.... maybe... start working on a form?

  12. #87
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    You did not modify tblPeople in order to link with the zip code table, so I took care of that in the attached DB. Also, you still need to join tblEntryTerms, tblMeritAwards and tblStatus to tblPeople (I assume). I think you can get rid of tblStProv since you have the zip code table now, correct?

    After all of the tables/relationships are set up, then it is time to work on the forms.

  13. #88
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    I just got done rearranging the relationships view, and did find some scragglers as you pointed out: tblEntryTerms, tblMeritAwards, tblStatus.

    First, thank you for making that conneciton, it completely slipped my mind

    Second, I would guess that they would be joined to tblPeople since these are attributes associated with the person.

    Yes, I think it would in fact be appropriate to delete tblStProv.

    I have made those relationships, take a look at what i have attached. I think it is all set, unless, when you scroll down to the bottom, there are some smaller groups, i think they are supposed to be linked to either tblTour or tblPeople...

  14. #89
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    It looks good. The date table was to include athletic events and black out dates, you might link it to the ticket table. You can always remove the join if issues develop, so it is not that big of a deal. You'll have a better idea once you get your forms set up & do your testing.

  15. #90
    nchesebro's Avatar
    nchesebro is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Dec 2010
    Posts
    108
    To begin the form, would i just open a blank form and start placing objects on it, and then edit the control source later on?

Page 6 of 7 FirstFirst 1234567 LastLast
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Date Picker?
    By gazzieh in forum Forms
    Replies: 9
    Last Post: 02-09-2013, 09:35 AM
  2. Date Picker doesn't appear
    By revnice in forum Access
    Replies: 9
    Last Post: 01-09-2012, 08:36 AM
  3. date picker activex control
    By mr2000 in forum Forms
    Replies: 1
    Last Post: 10-13-2010, 09:51 AM
  4. Date picker
    By BI4K12 in forum Access
    Replies: 1
    Last Post: 06-09-2010, 11:11 AM
  5. Microsoft Date and Time Picker 6.0
    By That Crazy Hockey Dood in forum Forms
    Replies: 0
    Last Post: 07-25-2007, 03:22 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums