I think you need to provide a little bit more information. Which column has
the data you want to sum ? Which column has the dates ? How do you
calculate the date range ? Is it from today to 365 days ago ? Is a Leap
Year an issue.
I'm guessing you could use SUMIF or maybe SUMPRODUCT
This example sums the values in column B where the date in column A is
greater than today's date minus 365 days.
You add column B but you would subtract any data more than 365 days
away.
=SUMIF(A1:A26,"<"&NOW(),B1:B26)-SUMIF(A1:A26,"<"&NOW()-365,B1:B26)
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.