Harry Shmedlap
Registered User.
- Local time
- Today, 21:03
- Joined
- Aug 9, 2005
- Messages
- 51
I have a list of resistors which I want to ensure that each unique value has only one corresponding part number. Here, for example:
Reference Value PartNumber
R1 100 Z1
R10 800 Z5
R2 120 Z2
R3 100 Z11
R4 300 Z3
R5 150 Z4
R6 800 Z5
R7 600 Z6
R8 100 Z1
R9 100 Z1
we see that the value of 100 has two part numbers (Z1 and Z11) and I want to catch that. In otherwords I want a query to show me just the following two rows:
100 Z1
100 Z11
I used the Find Duplicates wizard but got this:
Value PartNumber
100 Z1
100 Z1
100 Z11
100 Z1
800 Z5
800 Z5
On the above query I ran the wizard again but got a long list still.
How can I do all of this in a single query?
Reference Value PartNumber
R1 100 Z1
R10 800 Z5
R2 120 Z2
R3 100 Z11
R4 300 Z3
R5 150 Z4
R6 800 Z5
R7 600 Z6
R8 100 Z1
R9 100 Z1
we see that the value of 100 has two part numbers (Z1 and Z11) and I want to catch that. In otherwords I want a query to show me just the following two rows:
100 Z1
100 Z11
I used the Find Duplicates wizard but got this:
Value PartNumber
100 Z1
100 Z1
100 Z11
100 Z1
800 Z5
800 Z5
On the above query I ran the wizard again but got a long list still.
How can I do all of this in a single query?