Let's see if I understand what you want.....
With
A2:A50 will hold dates, initially only A2 and other dates will be added below.
B2:B50 will hold amounts corresponding to the entered dates
This formula sums the Col_B values for
the last date entered in Col_A
AND
the previous six days:
C1: =SUMIF(A2:A50,">="&(LOOKUP(10^99,A2:A50)-6),B2:B50)
so....
If A35 contains 28-JUL-2008 AND is the last date at the bottom of the list,
that formula will sum the amounts from 22-JUL-2008 through 28-JUL-2008
(a 7 day range)
Note: That 7-day range could be more than 7 rows if any dates have more than one entry.
EDITED TO INCLUDE THE FOLLOWING:
If the Col_A dates will ALWAYS be in ascending order...
this formula returns the sum of values for the
dates Max_Date through Max_Date_Minus_6
C1: =SUMIF(A:A,">="&MAX(A:A)-6,B:B)
Is that something you can work with?
Bookmarks