SUMIFS Calculation

nelsonsix

New Member
Joined
Jan 27, 2018
Messages
18
Hi All,

Hopefully you can help with my problem.

I am trying to calculate the number of points in one column based on the users name and the date by month. Example data is:

Column A Column B Column C
Name Date Points

Nick 20/01/2018 5
Will 01/01/2018 2
Nick 04/02/2018 3


So I want to calculate how many point Nick has for January, i can get it to work based on any other criteria apart from specifying the month of January. My formula that isn't working is:

=SUMIFS(C:C,A:A,"Nick",B:B,"**/01/2018")

No matter what wildcard variation I try I cant seem to get a correct answer

Is there a solution to this?

Thanks for your help.
Neil
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Welcome to Mr Excel Forum

Try
=SUMIFS(C:C,A:A,"Nick",B:B,">="&DATE(2018,1,1),B:B,"<="&EOMONTH(DATE(2018,1,1),0))

Hope this helps.

M.
 
Upvote 0
Ah perfect Marcelo, this worked a treat, I would have never got that! Thanks you for your quick reply.

Neil
 
Upvote 0

Forum statistics

Threads
1,216,473
Messages
6,130,837
Members
449,597
Latest member
buikhanhsang

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