Hello all,
I'm fairly experienced with Access, but I need some guidance...
I am using Access 2010 with Windows 7 to create my most complex database yet, along with a form that can be used to read and submit to the database. In a number of instances, I will need to submit multiple records at once to the same table.
For example, I have a series of combo boxes where the user can specify a "commodity code" and a "Scope" for each commodity code:
I would want to submit the records to my table, and have it use the same CATEGORY_ID_FK for each (which would be known from another field in the form:
So, if I entered in the form:
Commodity Code Scope A715 Norway B637 Norway C841 Ecuador
Then assuming my CATEGORY_ID_FK was known to be "7818" from another field in the form, I would want my "CATEGORY_GSCKS" table to be populated like this:
CATEGORY_GSCKS_ID (primary key) CATEGORY_ID_FK COMMODITY_CODE COMMODITY_SCOPE 1 7818 A715 Norway 2 7818 B637 Norway 3 7818 C841 Ecuador
I would also want to be able to recall this info back to the form when required, by selecting "7818" as the Category. Is all of this possible? Am I going down the completely wrong path?
Any help would be tremendously appreciated.