+ Reply to Thread
Results 1 to 72 of 72

Sales Report Grrrr

  1. #1
    Registered User
    Join Date
    07-31-2005
    Posts
    3

    Sales Report Grrrr

    I need some major help. I have 4 columns.
    A B C D
    Date Product Salesman Amount
    3/1/2005 Bike John $50.00

    a is date
    b is product
    c is salesman
    d is amount

    I need to write a formula and come up with a chart that will show how many bikes that john sold, each month.

    I thought it would be a lot simpler, and I am trying to educate myself.
    I have played with SumIF and SumProduct, but I dont think sumif supports multiple criteria ranges.

    I am a major noob when it comes to writing formulas. I could build you a samba server, and build a website, but I cant seem to do this at all.

    I bet this is easy for some of you guys out there. Can you lend me a hand????

  2. #2
    Registered User
    Join Date
    07-31-2005
    Posts
    3
    =SUM(IF($C$2:$C$12000="DDS1",IF($B$2:$B$12000=2391,IF($A$2:$A$12000<=DATEVALUE("3/31/2005"),IF($A$2:$A$12000>=DATEVALUE("3/2/2005"),$D$2:$D$12000,0),0),0),0))


    Found something called the sum add in or something.

    That was cool.

  3. #3
    Valued Forum Contributor
    Join Date
    07-11-2004
    Posts
    851
    =sumproduct((datevalue(daterange)>=datevalue(x))*(datevalue(daterange)<=datevalue(y))*(salesmanrange="john")*(productrange="apple")*(amountrange))

    where daterange is the column of dates, salesmanrange is the columnof salesmen, productrange is the column of products, and amountrange is the column of amounts. All are defined ranges such as a2:a100, not a:a.
    not a professional, just trying to assist.....

  4. #4
    Registered User
    Join Date
    07-31-2005
    Posts
    3
    Cool thanks man! That worked too.

    I have been thinking. I would like this data in a mysql database. And be able to do the exact same query, but with a sql query.

    Then display the results on a website, or something...

    Anyone have any sql experience. I should probably blow the dust off some of my sql books and start learning. That and my php book.
    '
    I know I know, I should be posting this on a SQL forum...

    If you guys even need some dental advice, go to http://www.dentalcom.net

    I made it.


    The reason I am doing this is to help someone out. We are experimenting and having some fun. If I could find a SQL way to do it, then I get a free box of donuts!

    LOL.
    Last edited by jshafer817; 07-31-2005 at 11:46 PM.

  5. #5
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  6. #6
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  7. #7
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  8. #8
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  9. #9
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  10. #10
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  11. #11
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  12. #12
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  13. #13
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  14. #14
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  15. #15
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  16. #16
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  17. #17
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  18. #18
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  19. #19
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  20. #20
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  21. #21
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  22. #22
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  23. #23
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  24. #24
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  25. #25
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  26. #26
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  27. #27
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  28. #28
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  29. #29
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  30. #30
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  31. #31
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  32. #32
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  33. #33
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  34. #34
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  35. #35
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  36. #36
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  37. #37
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  38. #38
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  39. #39
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  40. #40
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  41. #41
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  42. #42
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  43. #43
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  44. #44
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  45. #45
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  46. #46
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  47. #47
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  48. #48
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  49. #49
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  50. #50
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  51. #51
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  52. #52
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  53. #53
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  54. #54
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  55. #55
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  56. #56
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  57. #57
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  58. #58
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  59. #59
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  60. #60
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  61. #61
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  62. #62
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  63. #63
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  64. #64
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  65. #65
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  66. #66
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  67. #67
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  68. #68
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  69. #69
    JMB
    Guest

    RE: Sales Report Grrrr

    As an example, let's say your data is in cells A1:D4.

    You could create a table with month number along the left side and names
    across the top (in my test I created this table in cells A10:C14)

    John Matt
    1 X
    2
    3
    4
    5
    6


    Then enter a formula like this, copy across and down (I entered it in cell
    B11, where the "X" is above):

    =SUMPRODUCT((MONTH($A$1:$A$4)=$A13)*($C$1:$C$4=B$10)*($B$1:$B$4="Bike"))

    To get the value of the bikes sold, you could add

    *($D$1:$D$4)

    at the end of the formula (inside the last parenthesis).



    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


  70. #70
    Govind
    Guest

    Re: Sales Report Grrrr

    Hi,

    Use

    =SUMPRODUCT((MONTH(A1:A100)=3)*(B1:B100="Bike")*(C1:C100="John")*(D1:D100))

    This formula would give you the bike sales by john for a particular
    month. To find out the bike sales for other months, change the month
    from 3 to the month you need.

    Alternatively, you can make a pivot table, group the dates by months and
    then do a pivot chart based on that.

    Regards

    Govind.

    jshafer817 wrote:

    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >


  71. #71
    Peo Sjoblom
    Guest

    Re: Sales Report Grrrr

    Why not use a pivot table?

    http://peltiertech.com/Excel/Pivots/pivotstart.htm


    otherwise use

    =SUMPRODUCT(--(MONTH(A2:A200)=7),--(B2:B200="Bike"),--(C2:C200="Mike"),D2:D200)

    assuming you want to count the numbers in D where A is a particular month
    (in this example July), B is bike and C is Mike

    --
    Regards,

    Peo Sjoblom

    (No private emails please)


    "jshafer817" <[email protected]> wrote
    in message news:[email protected]...
    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile:
    > http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >



  72. #72
    cheryl
    Guest

    RE: Sales Report Grrrr

    a pivot table sounds like it would be your best way to go. Make sure no
    blank rows are in your information table. select a cell within the info (or
    highlight all the data). Go to the Data menu -- choose Pivot Table And Pivot
    Chart Reports. The Wizard should pop up and instruct you through it. This
    will make it easier to select information by month, salesman, item, or
    combinations of them. This will also create your chart for you.

    "jshafer817" wrote:

    >
    > I need some major help. I have 4 columns.
    > A B C
    > D
    > 3/1/2005 Bike John
    > Amount
    >
    > a is date
    > b is product
    > c is salesman
    > d is amount
    >
    > I need to write a formula and come up with a chart that will show how
    > many bikes that john sold, each month.
    >
    > I thought it would be a lot simpler, and I am trying to educate
    > myself.
    > I have played with SumIF and SumProduct, but I dont think sumif
    > supports multiple criteria ranges.
    >
    > I am a major noob when it comes to writing formulas. I could build you
    > a samba server, and build a website, but I cant seem to do this at
    > all.
    >
    > I bet this is easy for some of you guys out there. Can you lend me a
    > hand????
    >
    >
    > --
    > jshafer817
    > ------------------------------------------------------------------------
    > jshafer817's Profile: http://www.excelforum.com/member.php...o&userid=25758
    > View this thread: http://www.excelforum.com/showthread...hreadid=391707
    >
    >


+ 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