Formula for summing based on 2 criteria?

Daniellel

Board Regular
Joined
Jun 21, 2011
Messages
242
Hi,

What formula can I use to find out what the sum of column "D" is if Column "A" = Jan and Column "B" = Monday???

I have a list that i need to report the number of vacancies (Column D) were submitted on a Monday (Column B) in January (Column A).

I then need to replicate this sum for all days and months...

Not sure what I need, I thought something like...

=sumif(A1:A999="Jan", B1:B999="Mon",D1:D999)

But this obviously does not work. I have Excel 2003 if that helps???

PLEASE HELP!
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
if you are using Excel 2007 or 2010 you can use this formula too
=SUMIFS(D1:D999,A1:A999,"Jan",B1:B999,"Mon")
 
Upvote 0
Should it be Mon or Monday?

Mon - Is it making a difference that the data i am trying to sum is on sheet2 and i am creating this sum on sheet1? I have ensured that i entered Sheet2! before each arguement.
 
Upvote 0
peter
may be his data date formatted as month name and days


Ah, if they are dates formatted to display as day and month perhaps

=SUMPRODUCT(--(MONTH(A1:A999)=1),--(DAY(B1:B99)=2),D1:D999)
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,813
Members
452,945
Latest member
Bib195

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top