I have a list of 10,000 part numbers. Many of the part numbers repeat. Is there a function that will give me a list of the part numbers and how many times they occur? In addition can the function also add up how mant times that part number was accepted or rejected? Sampe below:
39896 Reject
40675 Accept
41904 Reject
41904 Accept
41904 Accept
42117 Accept
42791 Accept
42855 Accept
42885 Accept
43132 Accept
43136 Accept
43737 Accept
43737 Accept
43737 Accept
Result:
Part# Accept Reject
39896 0 1
40675 1 0
41904 2 1
42117 1 0
42791 1 0
42855 2 0
43132 1 0
43136 1 0
43737 3 0
If I use the COUNTIF function I have to type in every part number to find the instances of that part number and there are hundreds of part numbers. Is there a function or group of functions that will do this for me automatically?
Bookmarks