Results 1 to 2 of 2
  1. #1
    Yogibear is offline Novice
    Windows Vista Access 2007
    Join Date
    Feb 2012
    Posts
    18

    Alumni database, employment history: how to quantify career moves

    I created an alumni database, to track outcomes of our graduate students. We (and the government!) want to know what career area our alumni first started in and where they are now. I have no *@#$&@ idea how I am going to output this data. We need to answer the question "how many alumni started in BioPharm (variable) and are now in Academia (variable)?"


    I do not need to know length of service in each job.

    I store employment history in it's own table, with these fields:

    PK: employee history ID
    FK: employee ID (linked to biographical table)
    Employment Start Date
    Employment End Date (Null = current job)
    Job Title
    Employer Name
    Career Area (BioPharm, Academia, etc.)

    i don't have sufficient Access experience to help myself.....I would love to see if someone can provide guidance for me.

    Also, if I am allowed to ask -- if their are any Access consultants out there who live in Central Mass/Northern RI who would be willing to do a site visit - please PM me.

    THANK YOU FOR LISTENING!

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,930
    The following will pull all Academia records:

    SELECT * FROM History WHERE [Employment End State] Is Null AND [Career Area]='Academia';

    The following will pull all records where employment is currently Academia and individual was in BioPharm at some time.

    SELECT * FROM History WHERE [Career Area]='BioPharm' AND HistoryID IN (SELECT HistoryID WHERE [Employment End State] Is Null AND [Career Area]='Academia');


    BTW, should avoid spaces and special characters/punctuation (underscore is exception) in naming convention. Better would be EmpStartDate or Emp_Start_Date.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

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

Similar Threads

  1. Alumni database: Storing previous employers
    By Yogibear in forum Database Design
    Replies: 2
    Last Post: 10-30-2012, 04:58 PM
  2. Help with hockey team history database
    By Hockeyguy1924 in forum Database Design
    Replies: 20
    Last Post: 06-15-2012, 03:05 PM
  3. Charting Employment
    By Phoenyxsgirl in forum Reports
    Replies: 4
    Last Post: 12-14-2011, 10:12 AM
  4. [NOOB]Alumni Database
    By alyasms in forum Programming
    Replies: 2
    Last Post: 01-14-2011, 09:26 AM
  5. Employment Agency database small scale design Help
    By arrow in forum Database Design
    Replies: 4
    Last Post: 01-22-2010, 07:35 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