Okay,
If anyone would be as kind to point me in the right direction of how to go about correctly setting up my tables/relationships for the following scenario. I have setup an access database with the following:
TABLE: INVENTORY with following fields:
Product ID (alpha/numeric) – primary key
Description of Item (text)
Category (text)
Assignment (text)
Price (currency)
Setup Charge (currency)
Oty Ordered (number)
Qty Checked Out (number)
Date Checked Out (date/time)
Who Checked Out (text)
Qty Remaining (calculated)
Notes (text)
TABLE: CATEGORIES with following fields:
Category (text) – primary key
I also have a form called Inventory Checkout containing a subform showing the checkout date, who checked out, quantity checked out and notes. But what I want to have happen is for the subform to display a cascaded list by category that when expanded it shows all of associated items for that category broken down by product id, checkout date, who checked out, quantity checked out.
My problem is that I DO NOT know how to successfully make this happen. I have tried creating an autonumber in both the Category and Inventory tables and then linking them in a relationship via their primary keys.
SOMEBODY PLEASE POINT ME IN THE RIGHT DIRECTION!!