My situation is as follows
I'm building a contacts database and I have three tables
Table 1: Programs, currently 4 data points
Table 2: Contact titles, currently 3 data points
Table 3: MainData: Has Program key field, Contact title key field, and Contact Name data. Currently has three data points.
So I needed a form to show all possible combinations of program and contact title, which should be 12 (4 x 3). To accomplish this, I created a Cartesian query, which gives all 12 combinations:
And then made a form that uses that Cartesian query and the main data table, linking both the IDs...
And the result a form that looks exactly like I want it to:![]()
which shows the 3 data points I do have, and the 9 that I don't.
HOWEVER, I can't edit the contact in this form! What change do I need to make to still have the 12 entries in the form, but have "Contact" edit/create the relevant entry in the main data table?
Note: Ignore attached file, I clicked the wrong thing, and I can't remove an attachment apparently.