Hi
I am designing my first database. I'm trying to create cascading combo boxes in a form and display the data inside the subform. I have 3 combo boxes on the form. I'm trying to make them dependent on each other so by selecting one combo box updates the others in the series.
Diagrammaticall y the model is:
1. Context of Approval----<Type of Approval----<Risk Category
2. Produce data inside subform (Risk data).
3. ONE Risk can have many Risk Category and can belong with many Approval.
This my current table, just to clarify im using many to many type relationship.
Table:
Join Table : called cross
I am designing my first database. I'm trying to create cascading combo boxes in a form and display the data inside the subform. I have 3 combo boxes on the form. I'm trying to make them dependent on each other so by selecting one combo box updates the others in the series.
Diagrammaticall y the model is:
1. Context of Approval----<Type of Approval----<Risk Category
2. Produce data inside subform (Risk data).
3. ONE Risk can have many Risk Category and can belong with many Approval.
This my current table, just to clarify im using many to many type relationship.
Table:
Code:
Risk ID_Risk (PK) Risk_Name Date_Created
Code:
Type of Approval ID_Approval_Type (PK) Approval_Type_Name Date_Created
Code:
Context of Approval ID_Context_Approval (PK) Context_Approval_Name Date_Created
Code:
Risk Category ID_Risk_Category (PK) Category_Name Date_Created
Code:
Cross_Risk_Approval (between Risk & Approval) ID_Risk (FK) ID_Approval_Type (FK)
Code:
Cross_Context_Approval (between Type of Approval & Context of Approval) ID_Approval_Type (FK) ID_Context_Approval (FK)
Code:
Cross_Risk_Category (between Risk & Risk Category) ID_Risk (FK) ID_Risk_Category (FK)
Comment