I have column A with date values formatted as mm/dd/yyyy
. I am trying to sum the values of column B if A >=DATE(2012,1,1) AND
=SUM(B:B)
sums
I found another way to work around this issue that I thought I would share.
In my case I had a years worth of daily columns (i.e. Jan-1, Jan-2... Dec-31), and I had to extract totals for each month. I went about it this way: Sum the entire year, Subtract out the totals for the dates prior and the dates after. It looks like this for February's totals:
=SUM($P3:$NP3)-(SUMIF($P$2:$NP$2, ">2/28/2014",$P3:$NP3)+SUMIF($P$2:$NP$2, "<2/1/2014",$P3:$NP3))
Where $P$2:$NP$2
contained my date values and $P3:$NP3
was the first row of data I am totaling.
So SUM($P3:$NP3)
is my entire year's total and I subtract (the sum of two sumif
s):
SUMIF($P$2:$NP$2, ">2/28/2014",$P3:$NP3)
, which totals all the months after February and
SUMIF($P$2:$NP$2, "<2/1/2014",$P3:$NP3)
, which totals all the months before February.