I have two tables (persons
and projects
) which are in a many-to-many table, thus linked together by a third table persons_projects
In ms access I now created a form showing data from the projects
table.
What I want is to have a subform showing all persons
- datasets which participate in this project. In this subform it should also be possible to add (or delete) persons from this project—a drop-down seems the best choice here.
How can I do this? I’m able to show all participants, but I’m not able to add them. seems like I have the “insert into view” problem again, since I need persons
and persons_projects
to show the correct datasets. but as I’m only changing/adding rows in a single table (persons_projects
) I don’t see why access is bitchy again.