C
Celia
I am trying to sum values in a one column if the dates in a row fall within
a date range. There may be multiple occurrences of dates that occur in that
given range and therefore the value in the sum column needs to be added as
many times as that occurance. I have tried to to use a sumifs statement but
it seems only to be adding the value if it appears once in that row. I have
tried to add a table below that illustrates the question but I am not sure
the formatting will show. Any help will be greatly appreciated. I have
excel 2007.
Col A Col B Col C Col D
row 1 Units Price Sold
row 2 4 $20 Jan-10 Feb-12
row 3 2 $5 Jan-09 Jan-10
Row 4 3 $7 Jan-10 Feb-10
The results I need are as follows ( Just sums all the occurances of a unit
being sold for the date range)
2009 2010 2011 2012
Sales $5 $39 $- $20
I used this formula for the year 2010 and made it an array
=SUMIFS(b2:b4,c2:d4,">="&Date(2010,1,1),c2:d4,"<"&Date(2011,1,1))
a date range. There may be multiple occurrences of dates that occur in that
given range and therefore the value in the sum column needs to be added as
many times as that occurance. I have tried to to use a sumifs statement but
it seems only to be adding the value if it appears once in that row. I have
tried to add a table below that illustrates the question but I am not sure
the formatting will show. Any help will be greatly appreciated. I have
excel 2007.
Col A Col B Col C Col D
row 1 Units Price Sold
row 2 4 $20 Jan-10 Feb-12
row 3 2 $5 Jan-09 Jan-10
Row 4 3 $7 Jan-10 Feb-10
The results I need are as follows ( Just sums all the occurances of a unit
being sold for the date range)
2009 2010 2011 2012
Sales $5 $39 $- $20
I used this formula for the year 2010 and made it an array
=SUMIFS(b2:b4,c2:d4,">="&Date(2010,1,1),c2:d4,"<"&Date(2011,1,1))