View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Roger Govier[_3_] Roger Govier[_3_] is offline
external usenet poster
 
Posts: 2,480
Default How can i sum up numbers which are counted on a date.

Hi Terry

Assuming your Months are in A and Items in B
=SUMIF(A:A,"October",B:B)

This assumes that column A contains text of Month names. Of it is month
number, then
=SUMIF(A:A,10,B:B)
for October etc.
--
Regards
Roger Govier



"Terry" wrote in message
...
Hi, I am working with a sheet that has data based on the month and number
of
items counted. I want to know the number of items counted per month, how
can
i make a formula for this.