View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Gaurav[_4_] Gaurav[_4_] is offline
external usenet poster
 
Posts: 36
Default SumIf conditional to date range

=SUMPRODUCT((A3:A7<A1)*(B3:B7))


"IlliniDan" wrote in message
...
I have the following data set:

A B
1 10/7/2008
2
3 10/1/2008 92
4 10/8/2008 59
5 10/17/2008 31
6 10/22/2008 42
7 10/29/2008 28
8
9 Total = 92

Where A1 is the current date, I want to sum the total of column B for all
cells where column B corresponds to a date less than cell A1. This total
will be displayed in cell B9.

I'm aware of the SUMIF function, but haven't been able to figure out how
to
sum cells based on date without manually changing the formula. Ideally,
for
example, if today's date is October 7th, then the formula in cell A1 is
=Today(), and the formula in cell B9 is =SUMIF(A3:B7,"<A1",B3:B7).
However,
SUMIF doesn't work that way. Is there an alternative.
Please help!

Thanks in advance!