Record Relations

V

VainDM

hi is there a way of say having a list of records, and having a text box on
the list noting how many records are related to that one;

eg a list of products
product name; product number; qty

but then has a text box noting the number of materials related to the
product (if each material has its own record)
 
S

Steve

It sounds like you need tables that look like:
TblProduct
ProductID
ProductName
ProductNumber
Qty

TblMaterial
MaterialID
Material

TblProductMaterial
ProductMaterialID
ProductID
MaterialID

For each product, TblProductMaterial would record each material related to
the product. A totals query based on TblProductMaterial with an appropriate
criteria for ProductID could then give you the total material items for any
selected product.

Steve
(e-mail address removed)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top