I want to add up numbers that only happened within the last 12 months from
the current date. I do have a column with the date I want to reference to.
I want to add up numbers that only happened within the last 12 months from
the current date. I do have a column with the date I want to reference to.
Assuming that Column A contains the date, and Column B contains the
numbers, try...
=SUMIF(A1:A100,">="&TODAY()-365,B1:B100)
Hope this helps!
In article <8DA8B435-F4C2-4C3A-88D2-1A866DB9963C@microsoft.com>,
"Kevbro7189" <Kevbro7189@discussions.microsoft.com> wrote:
> I want to add up numbers that only happened within the last 12 months from
> the current date. I do have a column with the date I want to reference to.
If the figures to conditionally add are in column B, and the dates are in A,
=SUMIF(A:A,">=" & TODAY()-365,B:B) would add up all the values from the past
366 days (including the current day). Use that anywhere except in columns A
or B (in A or B you'll get a circular reference).
"Kevbro7189" wrote:
> I want to add up numbers that only happened within the last 12 months from
> the current date. I do have a column with the date I want to reference to.
>
>
On Tue, 18 Oct 2005 17:42:02 -0700, "Kevbro7189"
<Kevbro7189@discussions.microsoft.com> wrote:
>I want to add up numbers that only happened within the last 12 months from
>the current date. I do have a column with the date I want to reference to.
>
If your column of dates is named "dates" and your column of numbers is named
"numbers" then:
A1: StartDate of period of interest
A2: EndDate of period of interest
=SUMIF(dates,">="&A1,numbers) - SUMIF(dates,">"&A2,numbers)
should do it.
--ron
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks