Hi,
I have a combo box in a table tblTypeResultList that lists decision results- example - awarded, denied, allowed and has fields ResultID, Resultdesc.
I also have another combo box in tblTypeCase that lists types of case example - costs, jurisdiction, governance and has fields TypeDisputeID, TypeOfDisputedesc
These 2 combo boxes are used in the main case table tblCase as foreign keys.
Right now each case only has 1 type of dispute and 1 result.
Example Case 56, costs, awarded, 07/21/2016
I would now like to have several types of disputes and decisions for each case.
Example Case 56, costs, awarded, 07/01/2016
Case 56, jurisdiction, denied, 07/13/2016
Case 56, merits, appeal allowed, 07/21/2016
I DO NOT want to interfere with any of the information that already exists in tblCase, as there are queries and calculations and I need to keep these as is. Can I use the same combo boxes to populate new and different fields in a new table? For example I would create a new linked table called tblCase_Decision to allow the many side of the equation which would have fields
CaseID (foreign key from case table)
Descndate - date field
DescnResultID - foreign key
DescnTypeDisputeID - foreign key
Thank you
I have a combo box in a table tblTypeResultList that lists decision results- example - awarded, denied, allowed and has fields ResultID, Resultdesc.
I also have another combo box in tblTypeCase that lists types of case example - costs, jurisdiction, governance and has fields TypeDisputeID, TypeOfDisputedesc
These 2 combo boxes are used in the main case table tblCase as foreign keys.
Right now each case only has 1 type of dispute and 1 result.
Example Case 56, costs, awarded, 07/21/2016
I would now like to have several types of disputes and decisions for each case.
Example Case 56, costs, awarded, 07/01/2016
Case 56, jurisdiction, denied, 07/13/2016
Case 56, merits, appeal allowed, 07/21/2016
I DO NOT want to interfere with any of the information that already exists in tblCase, as there are queries and calculations and I need to keep these as is. Can I use the same combo boxes to populate new and different fields in a new table? For example I would create a new linked table called tblCase_Decision to allow the many side of the equation which would have fields
CaseID (foreign key from case table)
Descndate - date field
DescnResultID - foreign key
DescnTypeDisputeID - foreign key
Thank you