Thread: 3 Questions
View Single Post
  #17   Report Post  
Posted to microsoft.public.excel.misc
Django Cat[_2_] Django Cat[_2_] is offline
external usenet poster
 
Posts: 12
Default 3 Questions

Ron Rosenfeld said:

=SUMIF(Date,"="&A10-7,Money)-
SUMIF(Date,""&A10,Money)

will return transactions during the last 7 days prior to (and including) the
Date in A10.

If you need the current week, and Day 1 of the week is Sunday, then:

=SUMIF(Date,""&A10-WEEKDAY(A10),Money)-
SUMIF(Date,""&A10,Money)


Thanks, I'll try that - JG's formula isn't working...
DC

--