+ Reply to Thread
Results 1 to 4 of 4

Dates and Values

  1. #1
    Registered User
    Join Date
    01-17-2009
    Location
    Sheffield, England
    MS-Off Ver
    Excel 2003
    Posts
    15

    Dates and Values

    Hi,

    Is there a formula which would allow for a cell to look at a list of data which is sorted by date and add the values in another column between a specified period.

    To explain - i have a list of figures which automatically update over time. Column S lists the date and Column X has the values i want to add together.

    I would like to be able to add the values from column x for a period of the last 7 days for example so from todays date less 7. Which would be simple if the date entries were consistent but they are not, some sheets don't have values in the last 7 days for example.

    The current formula i have is
    =SUM((INDIRECT($A5&"!$X$2"))INDIRECT($A5&"!$X$4")))

    which i have manually adjusted to the correct cell references. It is this i would like to automate so no matter what dates are listed the formula refers to the required period.

    Any help much appreciated.

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,721
    Try using SUMPRODUCT like this

    =SUMPRODUCT(--(INDIRECT($A5&"!$S$2:$S$100")>TODAY()-7),INDIRECT($A5&"!$X$2:$X$100"))

    That will sum everything in column X where column S date is more recent than 7 days ago. You'll need another condition if you want an upper limit on the date....

  3. #3
    Registered User
    Join Date
    01-17-2009
    Location
    Sheffield, England
    MS-Off Ver
    Excel 2003
    Posts
    15
    Excellent,

    Spot on thanks, all the variants i will be doing will be ranges from today so this will work great.

    Thanks

  4. #4
    Registered User
    Join Date
    01-17-2009
    Location
    Sheffield, England
    MS-Off Ver
    Excel 2003
    Posts
    15
    Is there a similar formula i can use to find the MAX in a given period?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1