+ Reply to Thread
Results 1 to 3 of 3

calculating commissions for a range of values

  1. #1
    Registered User
    Join Date
    11-26-2005
    Posts
    5

    calculating commissions for a range of values

    Hello, I have read the threads about similar problems on this site, but nothing seems to work for me so perhaps I am doing something wrong.

    I need to calculate commission varying by range:

    .5% of sales up to 100
    .75% of sales from 100 to 150
    1% of sales above 150

    I have tried using the IF function but can't figure out if there is a way to signify "if less than x AND greater than y, then z".

  2. #2
    JE McGimpsey
    Guest

    Re: calculating commissions for a range of values

    See

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

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

    > Hello, I have read the threads about similar problems on this site, but
    > nothing seems to work for me so perhaps I am doing something wrong.
    >
    > I need to calculate commission varying by range:
    >
    > .5% of sales up to 100
    > .75% of sales from 100 to 150
    > 1% of sales above 150
    >
    > I have tried using the IF function but can't figure out if there is a
    > way to signify "if less than x AND greater than y, then z".


  3. #3
    bpeltzer
    Guest

    RE: calculating commissions for a range of values

    You could reformulate the issue as:
    ..5% of sales
    PLUS .25% of sales over 100
    PLUS .25% of sales above 150
    Which translates into =a1*0.5% + max(0,a1-100)*.25% + max(0,a1-150)*.25%.
    --Bruce

    "abryan" wrote:

    >
    > Hello, I have read the threads about similar problems on this site, but
    > nothing seems to work for me so perhaps I am doing something wrong.
    >
    > I need to calculate commission varying by range:
    >
    > .5% of sales up to 100
    > .75% of sales from 100 to 150
    > 1% of sales above 150
    >
    > I have tried using the IF function but can't figure out if there is a
    > way to signify "if less than x AND greater than y, then z".
    >
    >
    > --
    > abryan
    > ------------------------------------------------------------------------
    > abryan's Profile: http://www.excelforum.com/member.php...o&userid=29118
    > View this thread: http://www.excelforum.com/showthread...hreadid=488361
    >
    >


+ 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