+ Reply to Thread
Results 1 to 4 of 4

Please help with formula

  1. #1
    Kentucky Insurance
    Guest

    Please help with formula

    I want to be able to calculate different percentages of a number.
    Example:
    The premium is $50,000
    You get 7% commission of the first $20,000 of premium.
    You then get 5% of the next $10,000 of premium.
    Then you get 4% of the remaining amount.
    We want to set the formula so we can put in any premium or percentages to
    automatically calculate.
    Thanks,
    DeNise

  2. #2
    Elkar
    Guest

    RE: Please help with formula

    Let's assume your premium is stored in cell A1, then this formula should
    calculate your commission based on the criteria you provided.

    =MIN(A1,20000)*0.07+MIN(MAX(A1-20000,0),10000)*0.05+MAX(A1-30000,0)*0.04

    HTH,
    Elkar



    "Kentucky Insurance" wrote:

    > I want to be able to calculate different percentages of a number.
    > Example:
    > The premium is $50,000
    > You get 7% commission of the first $20,000 of premium.
    > You then get 5% of the next $10,000 of premium.
    > Then you get 4% of the remaining amount.
    > We want to set the formula so we can put in any premium or percentages to
    > automatically calculate.
    > Thanks,
    > DeNise


  3. #3
    Gary''s Student
    Guest

    RE: Please help with formula

    Put your premium in A1, then:

    =0.07*MIN(A1,20000)+(A1>20000)*0.05*MIN(A1-20000,10000)+(A1>30000)*0.04*(A1-30000)
    --
    Gary's Student


    "Kentucky Insurance" wrote:

    > I want to be able to calculate different percentages of a number.
    > Example:
    > The premium is $50,000
    > You get 7% commission of the first $20,000 of premium.
    > You then get 5% of the next $10,000 of premium.
    > Then you get 4% of the remaining amount.
    > We want to set the formula so we can put in any premium or percentages to
    > automatically calculate.
    > Thanks,
    > DeNise


  4. #4
    Kentucky Insurance
    Guest

    RE: Please help with formula

    Thanks alot.

    "Elkar" wrote:

    > Let's assume your premium is stored in cell A1, then this formula should
    > calculate your commission based on the criteria you provided.
    >
    > =MIN(A1,20000)*0.07+MIN(MAX(A1-20000,0),10000)*0.05+MAX(A1-30000,0)*0.04
    >
    > HTH,
    > Elkar
    >
    >
    >
    > "Kentucky Insurance" wrote:
    >
    > > I want to be able to calculate different percentages of a number.
    > > Example:
    > > The premium is $50,000
    > > You get 7% commission of the first $20,000 of premium.
    > > You then get 5% of the next $10,000 of premium.
    > > Then you get 4% of the remaining amount.
    > > We want to set the formula so we can put in any premium or percentages to
    > > automatically calculate.
    > > Thanks,
    > > DeNise


+ 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