Newbie problem I hope someone can help me with:
I have 2 lookup tables:
tblCollaborantLkUp
Collaborant_ID_#
Collaborant_Name
tblInstitutionLkUp
Institution_ID_#
Institution_Name
and a cross-reference table that holds the matches between Collaborants and Institutions.
tblCollaborantInstitutionCrossRef
Collaborant_ID_#
Institution_ID_#
tblCollaborantLkUp and tblInstitutionLkUp are populated. tblCollaborantLkUp is related one-to-many via Collaborant_ID_# to tblCollaborantInstitutionCrossRef . Similarly tblInstitutionLkUp to tblCollaborantInstitutionCrossRef.
I need to design a form that allows users to make associations between between Collaborants and Institutions in tblCollaborantInstitutionCrossRef.
I thought this would be easy, using subforms and combo boxes, but I can’t get it to work. Does anyone have any thoughts as to a better approach?
Thanks!