Creating a Running Count

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

OK I'm not even sure how to ask this:

I am in the printing industry and I would like to be able to keep a running
count on how many of each different type of stock I run. In column A I have
the code for a certain stock and in column B i have how many we ran. Column C
is the PO number, but thats not important.

I am wondering if there is a way to get excel to identify all the rows that
contain a certain stock code(column A) and add the number of pages run(column
B)?

Anyone have an idea of how to do it? If I can drop the info in a different
part of the sheet, or on a different sheet, it would prevent me from having
to sort and add up all the jobs with the same stock.
 
It sounds like you want to use the SUMIF function.

=SUMIF(Range,Criteria,SumRange)

LEt's say you are starting in Row 1

=SUMIF(A$1:A1,A1,B$1:B1)

Copy down as needed.

HTH,
Barb Reinhardt
 

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

Similar Threads

Help!! 2
SUM - IF - AND 7
Minimum function in a list 5
VBA userform Vlookup Excel 1
VBA .activate 6
Combobox selection 1
Combobox Population 6
Share Portfolio - Averaging the Cost per Shareholding 1

Back
Top