Summing & Tallying-up

G

Guest

I have a worksheet containing three columns of data representing a list of
materials and quantities. The first column contains a Part Number, the second
column is a Part Number Name, and the third column is Quantity. Part Numbers
(and their associated names) repeat through out this listing.

I need to query the worksheet to determine what the total quantity of each
Part Number is, and on a second worksheet display in 3 columns; Part Number;
Part Number Name; and Total Quantity (where Total Quantity equally the sum of
all the same Part Number quantities). On the second worksheet only one
instance of each Part Number & Part Number Name should appear.

Any ideas?
 
G

Guest

Try using a pivot table... Place your cursos in the middle fo the data and
Select Data -> Pivot Table from the menu. A wizard will pop up... (you can
usually just select finish and it iwll make all of the correct guesses for
you). Drag the Part number and name fields to the left column and the
quantities to the middle... That should do it...
 
J

JMay

In Cell C2 of Sheet2 enter

=SUMPRODUCT((Sheet1!$A$2:$A$100=Sheet2!A2)*(Sheet1!$B$2:$B$100=Sheet2!B2)*(Sheet1!$C$2:$C$100))
<< all in one cell and copy down
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top