+ Reply to Thread
Results 1 to 7 of 7

how do I aggregate dates

  1. #1
    Johnopp
    Guest

    how do I aggregate dates

    Did anyone figure out how to do this? There is a posting from CommuterVet
    that ends with a problem that countif only took the last one.

    I have a sales forecast that is by day,month,year, and I want to subtotal by
    month or put it into a pivot table and have it aggregate by month, but I
    can't seem to be able to do it.

  2. #2
    Toppers
    Guest

    RE: how do I aggregate dates

    Assumes dates in column A and Sales in B then following will give total for
    March.

    Change 3 to a cell if you the month value stored in a cell

    =SUMPRODUCT(--(MONTH($A$2:$A$100)=3),--($B$2:$B$100))

    C2=3

    =SUMPRODUCT(--(MONTH($A$2:$A$100)=C2),--($B$2:$B$100))


    HTH

    "Johnopp" wrote:

    > Did anyone figure out how to do this? There is a posting from CommuterVet
    > that ends with a problem that countif only took the last one.
    >
    > I have a sales forecast that is by day,month,year, and I want to subtotal by
    > month or put it into a pivot table and have it aggregate by month, but I
    > can't seem to be able to do it.


  3. #3
    Johnopp
    Guest

    RE: how do I aggregate dates

    Here is what I have:=SUMPRODUCT((MONTH(G3:G73)=G3),(H3:H73))
    I have dates in column G and the product amounts in column H. I am getting
    a zero with no message. The date format in G3 is month/year under
    "datevalue" as I had to convert a text date. Do I need to have a month
    number only or a month? I got the file from Microsoft CRM.


    "Toppers" wrote:

    > Assumes dates in column A and Sales in B then following will give total for
    > March.
    >
    > Change 3 to a cell if you the month value stored in a cell
    >
    > =SUMPRODUCT(--(MONTH($A$2:$A$100)=3),--($B$2:$B$100))
    >
    > C2=3
    >
    > =SUMPRODUCT(--(MONTH($A$2:$A$100)=C2),--($B$2:$B$100))
    >
    >
    > HTH
    >
    > "Johnopp" wrote:
    >
    > > Did anyone figure out how to do this? There is a posting from CommuterVet
    > > that ends with a problem that countif only took the last one.
    > >
    > > I have a sales forecast that is by day,month,year, and I want to subtotal by
    > > month or put it into a pivot table and have it aggregate by month, but I
    > > can't seem to be able to do it.


  4. #4
    Toppers
    Guest

    RE: how do I aggregate dates

    Try:

    =SUMPRODUCT(--(MONTH(G3:G73)=Month(G3)),--(H3:H73))


    "Johnopp" wrote:

    > Here is what I have:=SUMPRODUCT((MONTH(G3:G73)=G3),(H3:H73))
    > I have dates in column G and the product amounts in column H. I am getting
    > a zero with no message. The date format in G3 is month/year under
    > "datevalue" as I had to convert a text date. Do I need to have a month
    > number only or a month? I got the file from Microsoft CRM.
    >
    >
    > "Toppers" wrote:
    >
    > > Assumes dates in column A and Sales in B then following will give total for
    > > March.
    > >
    > > Change 3 to a cell if you the month value stored in a cell
    > >
    > > =SUMPRODUCT(--(MONTH($A$2:$A$100)=3),--($B$2:$B$100))
    > >
    > > C2=3
    > >
    > > =SUMPRODUCT(--(MONTH($A$2:$A$100)=C2),--($B$2:$B$100))
    > >
    > >
    > > HTH
    > >
    > > "Johnopp" wrote:
    > >
    > > > Did anyone figure out how to do this? There is a posting from CommuterVet
    > > > that ends with a problem that countif only took the last one.
    > > >
    > > > I have a sales forecast that is by day,month,year, and I want to subtotal by
    > > > month or put it into a pivot table and have it aggregate by month, but I
    > > > can't seem to be able to do it.


  5. #5
    Johnopp
    Guest

    RE: how do I aggregate dates

    That worked. Thank you so much. Your quick response was great.

    "Toppers" wrote:

    > Try:
    >
    > =SUMPRODUCT(--(MONTH(G3:G73)=Month(G3)),--(H3:H73))
    >
    >
    > "Johnopp" wrote:
    >
    > > Here is what I have:=SUMPRODUCT((MONTH(G3:G73)=G3),(H3:H73))
    > > I have dates in column G and the product amounts in column H. I am getting
    > > a zero with no message. The date format in G3 is month/year under
    > > "datevalue" as I had to convert a text date. Do I need to have a month
    > > number only or a month? I got the file from Microsoft CRM.
    > >
    > >
    > > "Toppers" wrote:
    > >
    > > > Assumes dates in column A and Sales in B then following will give total for
    > > > March.
    > > >
    > > > Change 3 to a cell if you the month value stored in a cell
    > > >
    > > > =SUMPRODUCT(--(MONTH($A$2:$A$100)=3),--($B$2:$B$100))
    > > >
    > > > C2=3
    > > >
    > > > =SUMPRODUCT(--(MONTH($A$2:$A$100)=C2),--($B$2:$B$100))
    > > >
    > > >
    > > > HTH
    > > >
    > > > "Johnopp" wrote:
    > > >
    > > > > Did anyone figure out how to do this? There is a posting from CommuterVet
    > > > > that ends with a problem that countif only took the last one.
    > > > >
    > > > > I have a sales forecast that is by day,month,year, and I want to subtotal by
    > > > > month or put it into a pivot table and have it aggregate by month, but I
    > > > > can't seem to be able to do it.


  6. #6
    Johnopp
    Guest

    RE: how do I aggregate dates

    That worked. Thank you so much. Your quick response was great.

    "Toppers" wrote:

    > Try:
    >
    > =SUMPRODUCT(--(MONTH(G3:G73)=Month(G3)),--(H3:H73))
    >
    >
    > "Johnopp" wrote:
    >
    > > Here is what I have:=SUMPRODUCT((MONTH(G3:G73)=G3),(H3:H73))
    > > I have dates in column G and the product amounts in column H. I am getting
    > > a zero with no message. The date format in G3 is month/year under
    > > "datevalue" as I had to convert a text date. Do I need to have a month
    > > number only or a month? I got the file from Microsoft CRM.
    > >
    > >
    > > "Toppers" wrote:
    > >
    > > > Assumes dates in column A and Sales in B then following will give total for
    > > > March.
    > > >
    > > > Change 3 to a cell if you the month value stored in a cell
    > > >
    > > > =SUMPRODUCT(--(MONTH($A$2:$A$100)=3),--($B$2:$B$100))
    > > >
    > > > C2=3
    > > >
    > > > =SUMPRODUCT(--(MONTH($A$2:$A$100)=C2),--($B$2:$B$100))
    > > >
    > > >
    > > > HTH
    > > >
    > > > "Johnopp" wrote:
    > > >
    > > > > Did anyone figure out how to do this? There is a posting from CommuterVet
    > > > > that ends with a problem that countif only took the last one.
    > > > >
    > > > > I have a sales forecast that is by day,month,year, and I want to subtotal by
    > > > > month or put it into a pivot table and have it aggregate by month, but I
    > > > > can't seem to be able to do it.


  7. #7
    Forum Contributor
    Join Date
    01-23-2006
    Posts
    194
    If you want to do the aggregation by month in the pivot table you could just use the 'group by' pivot table functionality, or add an extra column to the data as =text(<date>,"yyyy-mm") then use that field directly in the pivot table.

    regards..

+ 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