Hello,
I'm having trouble deciding how to design this simple database. The main problem is that I have separate tables with the field 'fiscal year' but I want them to be joined into one when querying.
The goal of this is to create a database to store project information where users will be able to create reports on project funding, status, etc. I've created an 'entry form' with subforms for contacts, partner, fte, status, and funding. Users can enter information into FTE fields, Status fields and Funding fields based on a fiscal year... This is no problem.
Contacts and Partners are 1-1 because there is only one record associated per project - we chose to break up contacts and partners into two separate tables because it was getting rather long. FTE, Status and Funding are 1-M because there are multiple records associated per project because each record is based on fiscal year.
The problem is as follows:
When I do a query, I'd like to be able to select a fiscal year... and I'd like to get all the information from FTE, Status and Funding. Should I create a separate table Fiscal Year to join all the fiscal years from FTE, Status and Funding? Where would the fiscal year go and how would this be designed (lookup table, etc)?
I'm using Microsoft Access 2002
I'm having trouble deciding how to design this simple database. The main problem is that I have separate tables with the field 'fiscal year' but I want them to be joined into one when querying.
The goal of this is to create a database to store project information where users will be able to create reports on project funding, status, etc. I've created an 'entry form' with subforms for contacts, partner, fte, status, and funding. Users can enter information into FTE fields, Status fields and Funding fields based on a fiscal year... This is no problem.
Contacts and Partners are 1-1 because there is only one record associated per project - we chose to break up contacts and partners into two separate tables because it was getting rather long. FTE, Status and Funding are 1-M because there are multiple records associated per project because each record is based on fiscal year.
The problem is as follows:
When I do a query, I'd like to be able to select a fiscal year... and I'd like to get all the information from FTE, Status and Funding. Should I create a separate table Fiscal Year to join all the fiscal years from FTE, Status and Funding? Where would the fiscal year go and how would this be designed (lookup table, etc)?
I'm using Microsoft Access 2002
Comment