Hi everyone
I'm trying to build a database for something that "in my mind" should be crazy simple, but when I try, I just cant get it to do what I need it to do.
I'll explain..
I want a database that contains a list of projects and people involved, with a check box to identify completed projects.
I have done tables like this:-
Main table
Project_ref
Date
Info1
Info2
Info3
Info4
....etc
Then I have a 2nd, 3rd and 4th table titled tbl_secretary; tbl_Researcher; tbl_validator. These tables contain primarily information on people. First and last name, salaries, gender, level of experience. each of these tables contains slightly different information. Hence the reason for not just having one table.
The Main table has a project ref that is unique and can have obviously many secretaries, researchers and validators. These people can also work on other projects (potentially) so i guess duplicates should be allowed. (?)
I am trying to create a data input form that has all of this information on one screen, so that I can input the main information once and then add the people involved in the project.. for example 6 secretaries, 4 researchers, 8 validators etc..
So i can then go back and run a report that lists those involved within the project. Look up a person and see what projects they was involved with. Total salaries with the project. Count how many people were involved.
I have tried to add "Project_Ref" to each of the three other tables, to establish a relationship that way. But then I just get 3 tables with tones of the same reference number in. I tried to add a Primary ID key like Sec_ID, Res_ID and Val_ID all to the main table and link to the other tables that way but it doesn't work either.
I cant figure out how i can establish relationships with the 3 "staffing" tables to all link to the main table
I hope this makes sense to someone who can help. There may even me a template out there that fits the bill, but ive not been able to find anything.
Thanks in advance for any help
David