**Eric and Salad - thank you both for the polite kick in the butt. I hope
I've done a better job of explaining myself below.
I am trying to produce a form to add products to a table (new products).
Tables:
tblCategoryDeta ils
CategoryID
SpecID
(This table contains template records for each product. Each product belongs
to a category - "Monitors" would be a product category. Each category has
multiple specifications (SpecID), each spec being a separate record)
tblCategoryProJ oin
CategoryID
ProductID
SpecID
Value
(This table contains specifications for each product. Each record is one
spec for one product. SpecID would refer to "monitor size" for instance. The
Value, which will be manually entered later, would be "17" for instance)
tblProducts
ProductNo
ProductID (autonumber)
(This table contains a list of products)
The PROBLEM: When a new product is created using a form, I need a group of
records from tblCategoryDeta ils to be duplicated to the tblCategoryProJ oin
table. The user will select the category and enter the ProductNo (a catalog
number). The issue is that I don't want to use the ProductNo. I want to use
the corresponding ProductID as different manufacturers sometimes use
identical product numbers.
Any thoughts on how to accomplish this? Obviously I'm fairly green as far as
Access goes. Any thoughts or just key words to point me in the correct
direction would be very valuable.
Regards,
Robin
I've done a better job of explaining myself below.
I am trying to produce a form to add products to a table (new products).
Tables:
tblCategoryDeta ils
CategoryID
SpecID
(This table contains template records for each product. Each product belongs
to a category - "Monitors" would be a product category. Each category has
multiple specifications (SpecID), each spec being a separate record)
tblCategoryProJ oin
CategoryID
ProductID
SpecID
Value
(This table contains specifications for each product. Each record is one
spec for one product. SpecID would refer to "monitor size" for instance. The
Value, which will be manually entered later, would be "17" for instance)
tblProducts
ProductNo
ProductID (autonumber)
(This table contains a list of products)
The PROBLEM: When a new product is created using a form, I need a group of
records from tblCategoryDeta ils to be duplicated to the tblCategoryProJ oin
table. The user will select the category and enter the ProductNo (a catalog
number). The issue is that I don't want to use the ProductNo. I want to use
the corresponding ProductID as different manufacturers sometimes use
identical product numbers.
Any thoughts on how to accomplish this? Obviously I'm fairly green as far as
Access goes. Any thoughts or just key words to point me in the correct
direction would be very valuable.
Regards,
Robin
Comment