TheCyrusVirus
New member
- Local time
- Today, 17:36
- Joined
- Sep 6, 2010
- Messages
- 2
I have a product table (tblProd which has ProdID, Name, Description, price)
I have an attributes table (tblAtt which has AttId, Description)
I then have a join table (tblProdAtt which has ProdAttId, prodID, AttId) which links the products to the attributes.
I also have a form which shows the product details and has the attributes that relate to this product as a subform.
What I am after is an easy way for the end user to see a list of all of the attributes and be able to select multiple records and link them to the product.
Ideally I wanted a pop up form where they can just click a checkbox and it would then insert the id of the parent product and the selected attribute(s) in the tblProdAtt table.
I am comfortable with VBA (although my experience is mostly limited to excel vba) so any suggestions are welcome on a neat way to achieve this.
Hope that all makes sense
Thanks in advance
I have an attributes table (tblAtt which has AttId, Description)
I then have a join table (tblProdAtt which has ProdAttId, prodID, AttId) which links the products to the attributes.
I also have a form which shows the product details and has the attributes that relate to this product as a subform.
What I am after is an easy way for the end user to see a list of all of the attributes and be able to select multiple records and link them to the product.
Ideally I wanted a pop up form where they can just click a checkbox and it would then insert the id of the parent product and the selected attribute(s) in the tblProdAtt table.
I am comfortable with VBA (although my experience is mostly limited to excel vba) so any suggestions are welcome on a neat way to achieve this.
Hope that all makes sense
Thanks in advance