I'm having a mental block on this
I'm trying to get a query to return a recordset that contains PartLength lengths of a certain MaterialWidth where they do not have the same length of a different MaterialWidth, Also a separate query would return duplicate lengths that are present for both MaterialWidth's
Example Data - Material Width will only be the values 3.5 or 5.5
For width 3.5 the length returned would be 20.5
For width 5.5 the length returned would be 36.5
For Both widths 14.5 would be returned (distinct)
Thanks
I'm trying to get a query to return a recordset that contains PartLength lengths of a certain MaterialWidth where they do not have the same length of a different MaterialWidth, Also a separate query would return duplicate lengths that are present for both MaterialWidth's
Example Data - Material Width will only be the values 3.5 or 5.5
Code:
Partlength, MaterialWidth 14.5, 3.5 14.5, 5.5 20.5, 3.5 36.5, 5.5
For width 5.5 the length returned would be 36.5
For Both widths 14.5 would be returned (distinct)
Thanks
Comment