+ Reply to Thread
Results 1 to 31 of 31

anyone know a formula?

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

    anyone know a formula?

    Hello everyone- i work for a very small non-profit and need some help calculating some spreadsheet values. if anyone can help with this problem, i would really appreciate it. here it goes....

    i am putting together a list of busnesses and am trying to calculate a formula based on the number of employees they have and the classification of the business.. for example... AAA enterprises has 52 employees and a manager.
    i need to calculate how much in dues they should pay..

    for the manager they pay $200, next 9 people each at $17, next 10 people each $14, next 30 each $9, and next 50 people each and over $7. the total for AAA would be $777.. is there a way to set up a formula so i can just put the number of employees and let the spreadsheet do the work for me???

    thanks for your help...

  2. #2
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  3. #3
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  4. #4
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  5. #5
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  6. #6
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  7. #7
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  8. #8
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  9. #9
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  10. #10
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  11. #11
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  12. #12
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  13. #13
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  14. #14
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  15. #15
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  16. #16
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  17. #17
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  18. #18
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  19. #19
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  20. #20
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  21. #21
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  22. #22
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  23. #23
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  24. #24
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  25. #25
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  26. #26
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  27. #27
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  28. #28
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  29. #29
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


  30. #30
    N Harkawat
    Guest

    Re: anyone know a formula?

    Assuming A1 holds the number of employees and cell B1 holds the number of
    managers

    =MIN(A1,9)*17+MIN(A1-9,10)*14*(A1>9)+MAX(A1-19,0)*7+B1*200

    For 52 employees and a manager I get 724 and not 777
    9*17 + 10*14 + 33*7 = 524 + 200(for manager) = 724


    "bill_robinson" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...
    >
    >
    > --
    > bill_robinson
    > ------------------------------------------------------------------------
    > bill_robinson's Profile:
    > http://www.excelforum.com/member.php...o&userid=25397
    > View this thread: http://www.excelforum.com/showthread...hreadid=389886
    >




  31. #31
    JE McGimpsey
    Guest

    Re: anyone know a formula?

    One way:

    Assuming that each business has a manager and that cell A1 contains the
    total number of employees (including the manager):

    =SUMPRODUCT(--(A1>{0,1,10,20,50}),(A1-{0,1,10,20,50}),
    {200,-183,-3,-5,-2})

    See

    http://www.mcgimpsey.com/excel/variablerate.html

    for an explanation, and some more flexible alternatives.


    In article
    <[email protected]>,
    bill_robinson
    <[email protected]> wrote:

    > Hello everyone- i work for a very small non-profit and need some help
    > calculating some spreadsheet values. if anyone can help with this
    > problem, i would really appreciate it. here it goes....
    >
    > i am putting together a list of busnesses and am trying to calculate a
    > formula based on the number of employees they have and the
    > classification of the business.. for example... AAA enterprises has 52
    > employees and a manager.
    > i need to calculate how much in dues they should pay..
    >
    > for the manager they pay $200, next 9 people each at $17, next 10
    > people each $14, next 30 each $9, and next 50 people each and over $7.
    > the total for AAA would be $777.. is there a way to set up a formula so
    > i can just put the number of employees and let the spreadsheet do the
    > work for me???
    >
    > thanks for your help...


+ 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