Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 36
  1. #16
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    No, you are not dumb. Do you have participants that live at the same address and have the same phone #? If so, then your structure is valid.

  2. #17
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    It is a possibility, but most shouldnt. The other thing I am now confused about is forms. Do I just do the same thing i did before, or do i make seperate forms for each thing? Brain hurts.

  3. #18
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    I would not recommend even starting your forms until your table structure is complete. If you create a form now and then make changes to the table structure, you would probably have to rebuild the form anyway.

  4. #19
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    Heres what ive got.

  5. #20
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    It's a little hard to read, but I still see tblDrugs that list beer and wine as individual fields. As I mentioned earlier, specific items should be records in the table not fields.

  6. #21
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    Ya, i think im confused about that. How do you mean record?

  7. #22
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    A record is an entry in a table. See the attached database as an example.

  8. #23
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    Ohh physically type that in.

  9. #24
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    Ok, so with the tables with dates and so forth how am I supposed to do those ones so they connect properly to each participant.

  10. #25
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    I can't tell much about the dates since I cannot read all of the field names in the relationship diagram you posted. How are the dates being used? Are the dates associated with particular events related to the participant? You'll have to provide a little more detail of what your application is designed to do.

  11. #26
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    The dates are associated with the start and end of admission, programs, assesments, there are dates for everything. Each participant will have different dates.

  12. #27
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    As you describe them, the dates would not be key fields (i.e. not used to link tables). However, the "admission, programs, assesments" would probably more significant.

    You'll have to define these a little further to determine how significant.

    Can a participant be admitted & then discharged and then readmitted at a later date? If so, that describes a one-to-many relationship.

    With respect to programs, do you have multiple programs in which your participants can participate? Can multiple participants participate in the same program? If both conditions are true then you need a junction table to relate the participants to the programs that they take. The structure would look something like this

    tblParticipants
    -pkParticipantID primary key, autonumber
    -txtFName
    -txtLName

    tblPrograms
    -pkProgramID primary key, autonumber
    -txtProgramName

    tblParticipantPrograms (the junction table)
    -pkPartProID primary key, autonumber
    -fkParticipantID foreign key to tblParticipants
    -fkProgramID foreign key to tblPrograms
    -dteStart (start date)
    -dteCompletion (completion date)


    Regarding assessments, I assume you do the assessments and that a participant may undergo many assessments. What information is captured other than when the assessment occurs?

  13. #28
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    You get most of the persons info from an initial assesment, another one has a score 1 thru I dont know. Some people will have the same assesment dates, as they are often done in groups. There are four or five categories of programs and within those are different programs. More than one person can be in the program, and they can be in multiple, but the dates of the start and end are often different. With the bit you just showed me I'm understanding it a bit more.

  14. #29
    jzwp11 is offline VIP
    Windows 7 Access 2007
    Join Date
    Jun 2010
    Location
    Dayton, OH
    Posts
    2,901
    ...another one has a score 1 thru I dont know. Some people will have the same assesment dates, ...
    Are you responsible for calculating the score via the database or just recording the final score? If you are responsible for the calculation, you will need to have the assesment factors and the scoring system incorporated into the database. As a general rule, you would not store the actual calculated values, just the raw parameters used to calculate it. You would calculate the value on the fly when you need it in queries, forms or reports.

  15. #30
    ellixer is offline Advanced Beginner
    Windows 7 Access 2007
    Join Date
    Nov 2010
    Posts
    35
    I just have to put in the final score

Page 2 of 3 FirstFirst 123 LastLast
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Stop subform from creating record
    By eww in forum Forms
    Replies: 2
    Last Post: 09-16-2010, 02:41 PM
  2. Stop tab from creating next record.
    By tazbergy in forum Forms
    Replies: 1
    Last Post: 09-12-2010, 04:29 PM
  3. Replies: 3
    Last Post: 01-14-2010, 10:42 AM
  4. Replies: 3
    Last Post: 01-14-2010, 08:32 AM
  5. Creating "Edit Record" link in table column
    By joshearl in forum Forms
    Replies: 1
    Last Post: 12-25-2009, 11:17 AM

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