L
LindaSD
I have one table with three fields. Part#, BasePart#, Description. Where
the BasePart# is a duplicate, I want to know when the Descriptions are
different. I've been going through a lot of work to do this and hoping there
is something easy.
Example:
Part# BasePart# Description
10100 100 BusyBee 20
20100 100 BusyBee 50x50x20
30100 100 MyBusyBee 20
20300 300 MeMyself
40300 300 MeMyself
In the example, I would want to know that BasePart# 100 had three different
descriptions. I would NOT want to see results for 300 because the
descriptions are the same. Some of the basepart#s could have 20 different
records with either all the same or with multiple variations on the
descriptions field.
Currently running a duplicate query to find only those with multiple
basepart#s and using group by on this so it only shows one record for those
all the same and another for each that is different. This still leaves me
with a mess and many more steps.
This project resulted in different people entering different descriptions
for what is basically the same part just packaged in different quantities.
I'm trying to get a list of those parts that need to have their descriptions
changed so they are all the same, and view each variation so I can decide
which is correct.
Any suggestions appreciated. Hope this is enought info.
Linda
the BasePart# is a duplicate, I want to know when the Descriptions are
different. I've been going through a lot of work to do this and hoping there
is something easy.
Example:
Part# BasePart# Description
10100 100 BusyBee 20
20100 100 BusyBee 50x50x20
30100 100 MyBusyBee 20
20300 300 MeMyself
40300 300 MeMyself
In the example, I would want to know that BasePart# 100 had three different
descriptions. I would NOT want to see results for 300 because the
descriptions are the same. Some of the basepart#s could have 20 different
records with either all the same or with multiple variations on the
descriptions field.
Currently running a duplicate query to find only those with multiple
basepart#s and using group by on this so it only shows one record for those
all the same and another for each that is different. This still leaves me
with a mess and many more steps.
This project resulted in different people entering different descriptions
for what is basically the same part just packaged in different quantities.
I'm trying to get a list of those parts that need to have their descriptions
changed so they are all the same, and view each variation so I can decide
which is correct.
Any suggestions appreciated. Hope this is enought info.
Linda