summing data on months

  • Thread starter Thread starter navin
  • Start date Start date
N

navin

Hi All,

I have spreadsheet, in which col A has supplier name, Col B has year,
Col C has Months and Col D has number of units supplied by the
supplier.

Now to calculate the number of units received for Month of Mar-06, i
have to add the qty received in Jan-06, feb-06 and Mar-06. In the same
way, to calculate the qty received in Apr-06, i have to sum the qty
received in Feb-06, Mar-06 and Apr-06.

I am unable to find a way to do this. Please help.

Thanks for the help,
Navin
 
=SUMPRODUCT(--(B2:B200=2006),--(C2:C200<=3),D2:D200)

will sum for March. Change the <=3 for the month in question.

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Back
Top