I have a client table with a one to many relationship to a client project table. Each project can require multiple analyses.
tblClient
ClientID (pk)
ClientFirst
ClientLast
...etc
tblProject
ProjectID (pk)
ClientID (fk)
ProjectType
...etc
tblProjectAnalysis
ProjectAnalysisID (pk)
ProjectID (fk)
AnalysisTypeID (fk)
tblAnalysis
AnalysisTypeID (pk)
AnalysisDescription
I want to create a form with a project subform that then has a related subform on which I can identify the multiple analyses required. Ideally, the analysis type descriptions defined in tblAnalysis will be presented with checkboxes that the user can select.
I'd like some advice on how to set that up.
TIA
ML!
tblClient
ClientID (pk)
ClientFirst
ClientLast
...etc
tblProject
ProjectID (pk)
ClientID (fk)
ProjectType
...etc
tblProjectAnalysis
ProjectAnalysisID (pk)
ProjectID (fk)
AnalysisTypeID (fk)
tblAnalysis
AnalysisTypeID (pk)
AnalysisDescription
I want to create a form with a project subform that then has a related subform on which I can identify the multiple analyses required. Ideally, the analysis type descriptions defined in tblAnalysis will be presented with checkboxes that the user can select.
I'd like some advice on how to set that up.
TIA
ML!