Hello,
Following on from my previous discussion www.accessforums.net/showthread.php?t=71837 which was hugely helpful. I have questions on how to update the records.
There are:
- Three tables - Project, Builder and Contact.
- Two junction tables which relate Project to Builder, and Contact to Builder.
From this I have a queryPBC that entirely describes Who is Working for Whom and Where.
I see 8 combinations (2x2x2) of new or updated information that the user is likely to enter to create new records which would be discovered in the queryPBC.
Just focusing on the Project-Builder relationship; in all instances of new data entry, there will be additional combinations in jnctProjectBuilder table AND in some of these there will be an additional record in either tblProject or tblBuilder or Both.
The same combinations apply to the Builder-Contact relationship.
Presuming I am going to use a well presented form for the user.
My Excel Educated brain sees a user form with a multitude of buttons to cater for all the combinations of data entry into all tables... This is clearly not the way forward.
Now, I will hazard a guess the solution is probably via an append and/or update query, However I am blind to the first step.
I can build forms all day.
I can create unique records in jnctProjectBuilder from existing records in tblProject and tblBuilder in a basic clunky way.
I can create unique records in both tblProject and tblBuilder in the same clunky manner.
But this is currently a two step coal-fired-steam-driven and wholly inelegant process.
How do I drive the right queries from a user form that updates/appends the required 5 tables with the required data without bamboozling the user with options.
A hard shove in the right direction will be appreciated.