[TABLE="class: grid, width: 350, align: left"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD][/TD]
[TD]11/11/14[/TD]
[TD]12/12/14[/TD]
[TD]1/13/15[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Carl[/TD]
[TD]$4[/TD]
[TD]$0[/TD]
[TD]$11[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Jesse[/TD]
[TD]$3[/TD]
[TD]$0[/TD]
[TD]$14[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jake[/TD]
[TD]$0[/TD]
[TD]$4[/TD]
[TD]$0[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Carl[/TD]
[TD]$0[/TD]
[TD]$16[/TD]
[TD]$14[/TD]
[/TR]
</tbody>[/TABLE]
I need to sum a large data set based on a name and a date. I want the total of Carl's spending in 2014. The answer should be $20. I'm trying to use a sumif equation.
=SUMIFS(B2:D5,A2:A5,"Carl",B1:D1,">=1/1/2014",B1:D1,"<1/1/2015")
This doesn't seem to work. What can I do to determine this?
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD][/TD]
[TD]11/11/14[/TD]
[TD]12/12/14[/TD]
[TD]1/13/15[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Carl[/TD]
[TD]$4[/TD]
[TD]$0[/TD]
[TD]$11[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Jesse[/TD]
[TD]$3[/TD]
[TD]$0[/TD]
[TD]$14[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Jake[/TD]
[TD]$0[/TD]
[TD]$4[/TD]
[TD]$0[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]Carl[/TD]
[TD]$0[/TD]
[TD]$16[/TD]
[TD]$14[/TD]
[/TR]
</tbody>[/TABLE]
I need to sum a large data set based on a name and a date. I want the total of Carl's spending in 2014. The answer should be $20. I'm trying to use a sumif equation.
=SUMIFS(B2:D5,A2:A5,"Carl",B1:D1,">=1/1/2014",B1:D1,"<1/1/2015")
This doesn't seem to work. What can I do to determine this?