Results 1 to 5 of 5
  1. #1
    mshort is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2012
    Posts
    2

    Database

    I would like to create a database that includes the following:

    Name
    documents needed


    check box once documents are submitted
    able to pull a report of names of people still missing documents and documents that are missing.

    Is this something that can be done in access?

    Thank you

  2. #2
    RayMilhon is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    Aug 2011
    Location
    Southern California
    Posts
    1,071
    Maybe, but your description is insufficient to give you a real answer.

  3. #3
    mshort is offline Novice
    Windows 7 32bit Access 2010 32bit
    Join Date
    Jan 2012
    Posts
    2
    Database would include a students name, also whatever requirements the student may have such as high school diploma, birth certificate and social security card. What I would like to do is be able to indicate when the documents are submitted. Also run a report to see if any students are missing any information.

  4. #4
    RayMilhon is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    Aug 2011
    Location
    Southern California
    Posts
    1,071
    This absolutely can be done in Access.

    First read up on normalization.

    Secondly if the required documents are the same for each student you would have a Student Table-Specific to that students demographic info
    Documents table-A list of each document, ID number, Document Description, Required

    Finally a linking table that links the students to the documents

    StudentID
    DocumentID

    Then you would have a query something like

    Select Studentdemographicsfields, documentfields
    From tblstudents Inner join studentdoclink on tblstudents.studentid = studentdoclink.studentid left outer join documents on studendoclink.docid = documents.docid
    Where documents.docid Is Null

    That would give you all students that were missing documents and which ones they're missing.

  5. #5
    RayMilhon is offline VIP
    Windows XP Access 2010 32bit
    Join Date
    Aug 2011
    Location
    Southern California
    Posts
    1,071
    Oops. That's the wrong query. A little to quick on the typing and not enough thought. You're query would be more complicated than that as you need all of the documents. And then those members that were not matching. That would take more thought. I'll try and post back a little later.

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

Similar Threads

  1. Database Design for Specification Database
    By khwaja in forum Database Design
    Replies: 2
    Last Post: 11-24-2011, 03:58 AM
  2. Replies: 20
    Last Post: 08-08-2011, 01:34 PM
  3. Replies: 3
    Last Post: 05-15-2011, 10:52 PM
  4. Replies: 1
    Last Post: 11-03-2010, 10:41 AM
  5. Replies: 4
    Last Post: 08-12-2010, 08:38 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