Hi,
First post to this forum so take it easy on me! I'm also a first time Access user.
What I'm trying to do is generate a list of product and color combination. Think T-shirts in small, medium and large. Actually, my product is tile, which is glazed according to different glaze codes. Our product numbers consist of the glaze code suffixed by the part number. (ie. RED-SQUARE).
That was really easy. I just created a simple query with an expression that combines the fields with ampersands. Here's my query:
Now here's what has me stuck: We have several series of glazes (dark glazes, bright glazes, smooth, rough, etc). Each one multiplies the price of the product by a different amount, but within that series the customer can choose whatever glaze they want without impacting the price. Our website requires that the series be tacked onto the end of the product code.
So if we have two glaze categories each with two glazes, and two products, there should only be 8 total product codes. When I try to incorporate the series from the glaze table into my query, I end up getting 4(glazes)x2(products)x2(glaze series)=16 product codes.
How do I remove the invalid combination where the glaze code at the start of the product code doesn't belong to the glaze series at the end of the product code?
Thanks, and I hope I was able to explain my situation clearly.
First post to this forum so take it easy on me! I'm also a first time Access user.
What I'm trying to do is generate a list of product and color combination. Think T-shirts in small, medium and large. Actually, my product is tile, which is glazed according to different glaze codes. Our product numbers consist of the glaze code suffixed by the part number. (ie. RED-SQUARE).
That was really easy. I just created a simple query with an expression that combines the fields with ampersands. Here's my query:
Code:
SELECT [GL] & "-" & [PN] AS ProductNumber, Description & " in " & Name AS ["Description"]
FROM GLAZE, PART;
So if we have two glaze categories each with two glazes, and two products, there should only be 8 total product codes. When I try to incorporate the series from the glaze table into my query, I end up getting 4(glazes)x2(products)x2(glaze series)=16 product codes.
How do I remove the invalid combination where the glaze code at the start of the product code doesn't belong to the glaze series at the end of the product code?
Thanks, and I hope I was able to explain my situation clearly.