B
buscher75
Hello, I have a table that holds records of part numbers for different units
we build. Each time a part is used in a different unit another record is
created. So, there could be multiple records for a single part. Within the
hierarchy of the table we have “model#†that each unit belongs to.
I want to run a query that will show any part that it unique to a specific
model. The query should produce results for the specific model only and
should exclude any part that is used on another model even if is also used on
the specific model.
Here is my sample table:
Model# Unit# Part#
Model A ABC X456
Model A DEF Z123
Model A DEF X456
Model B GHI Z123
Model C JKL Z123
Hypothetically, I only want to see the first and third record because part
Z123 is used elsewhere in another Model.
Model A ABC X456
Model A DEF X456
Does anyone have a solution? Thanks in advance!
we build. Each time a part is used in a different unit another record is
created. So, there could be multiple records for a single part. Within the
hierarchy of the table we have “model#†that each unit belongs to.
I want to run a query that will show any part that it unique to a specific
model. The query should produce results for the specific model only and
should exclude any part that is used on another model even if is also used on
the specific model.
Here is my sample table:
Model# Unit# Part#
Model A ABC X456
Model A DEF Z123
Model A DEF X456
Model B GHI Z123
Model C JKL Z123
Hypothetically, I only want to see the first and third record because part
Z123 is used elsewhere in another Model.
Model A ABC X456
Model A DEF X456
Does anyone have a solution? Thanks in advance!