Results 1 to 4 of 4
  1. #1
    mathonix is offline Novice
    Windows XP Access 2007
    Join Date
    Jan 2010
    Posts
    5

    Redundant data entry question

    Please forgive my ignorance here, I am new to access and am just working on this database because no one else at my work thought they would be of any use.

    I made a database for emergency room nurses to enter the tasks they are doing on any given shift, and the acuity (length of time) spent on each shift. The form basically looks like this:



    Name / Date / Length of Shift
    Activity (drop down list with about 30 options)
    Acuity (text boxes named 1 through 4 to enter the total amount of the listed activities done at each acuity).

    So a nurse might fill in their info and then have performed 2 Cash Screenings for Medicare Patients at acuity 3 and 1 at acuity 1.

    The problem is they may do up to 10 different activities in one day and each time they are submitting their work they have to re-enter their name/date/length of shift. Any suggestions on how to add a button that will basically allow them to 'enter more' and maintain the name/date/shift info from their previous entries?

  2. #2
    ConneXionLost's Avatar
    ConneXionLost is offline Simulacrum
    Windows XP Access 2003
    Join Date
    Jan 2010
    Location
    Victoria, Canada
    Posts
    291
    Hi mathonics,

    Looks like a good time to move to two tables with a form/subform arrangement.

    Build the tables like:

    tblShift
    ShiftID (Primary Key - Autonumber)
    NurseName
    ShiftDate
    ShiftLength

    tblActivity
    ActivityID (Primary Key - Autonumber)
    ShiftID (Foreign Key)
    Activity
    Acuity

    Join the tables on ShiftID.

    Build a form "frmShift" for tblShift.

    Build a subform "fsubActivity" for tblActivity and insert it into frmShift. The subform wizard should be able to do most of this for you.

    Now the nurses will only have to fill in the Shift info once, then list the activities for that shift in the subform.

    Cheers,

  3. #3
    mathonix is offline Novice
    Windows XP Access 2007
    Join Date
    Jan 2010
    Posts
    5
    Thank you much! With a few small additions that worked perfectly.

  4. #4
    RuralGuy's Avatar
    RuralGuy is offline Administrator
    Windows 7 Access 2007
    Join Date
    Mar 2007
    Location
    8300' in the Colorado Rocky Mountains
    Posts
    12,922
    It sounds like you are ready to follow the link in my sig and mark this thread as Solved.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Using Redundant Tables
    By rand605 in forum Database Design
    Replies: 3
    Last Post: 12-03-2009, 09:38 AM
  2. Three Questions on Data Entry Using Forms
    By The_Rattlesnake in forum Forms
    Replies: 1
    Last Post: 10-30-2009, 06:04 AM
  3. Subform Data Entry Issue
    By yuriyl in forum Forms
    Replies: 3
    Last Post: 05-14-2009, 08:49 PM
  4. Data Entry And Data Recalling
    By GeeDee in forum Access
    Replies: 0
    Last Post: 05-01-2007, 05:20 AM
  5. Run report or sub form during data entry
    By wasim_sono in forum Programming
    Replies: 0
    Last Post: 03-09-2006, 05:40 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