+ Reply to Thread
Results 1 to 4 of 4

How do I calculate different percentages depending on the amount?

  1. #1
    Registered User
    Join Date
    09-13-2012
    Location
    Portland, OR
    MS-Off Ver
    Excel 2011
    Posts
    2

    How do I calculate different percentages depending on the amount?

    I'm having a great deal of trouble figuring out a formula... Say a company is paying $75,000 a month for royalties for a patent. The patent office pays the inventor 40% for the first $50,000 of total royalties accrued; 35% when the total amount accrued is between $50,000 and $100,000; and 30% when the total amount accrued is over $100,000. How would I make a formula that figures out the total amount the inventor gets after each pay period?

    I thought that a nested IF statement would work, and I came up with this (A1 would be the total amount accrued), but it doesn't quite work:
    =IF(A1<=50000,A1*0.4,IF(A1>=50000<=100000,(50000*0.4)+((A1-50000)*0.35),IF(A1>100000,(50000*0.4)+(50000*0.35)+((A1-100000)*0.3))))

    Any help the community can provide would be deeply appreciated!

  2. #2
    Forum Expert dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    Dubai, UAE
    MS-Off Ver
    1997 - 2016
    Posts
    8,191

    Re: How do I calculate different percentages depending on the amount?

    Hi woofer,

    Welcome to the forum.

    Just corrected the syntax issues in your formula:-

    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Regards,
    DILIPandey

    <click on below 'star' if this helps>
    DILIPandey, Excel rMVP
    +919810929744 (India), +971528225509 (Dubai), [email protected]

  3. #3
    Registered User
    Join Date
    09-13-2012
    Location
    Portland, OR
    MS-Off Ver
    Excel 2011
    Posts
    2

    Re: How do I calculate different percentages depending on the amount?

    Thanks for the syntax correction, but the formula is still not outputting the correct answer. The percentages should be calculated from each $75,000 payment, but they need to account for the total amount accrued. This is where I am having trouble.

    For example:
    For the first accrual period ($75,000 in royalties), the inventor should receive $28,750. This is because he gets 40% of the first $50,000 (which is $20,000) and 35% of the remaining $25,000 (which is $8,750). This comes to a total of $28,750. For the next accrual period (again, $75,000 in royalties, now a total of $150,000), the inventor should receive $23,750. This is because he gets 35% for the first $25,000 (which is $8,750), and 30% of the remaining $50,000 (which is $15,000). For the next accrual period (again, $75,000 in royalties) and all subsequent accrual periods, the inventor would only receive 30% of the $75,000 because the total accrued is over $100,000. Does this make sense?
    Last edited by woofer*wolf; 09-13-2012 at 01:07 AM.

  4. #4
    Forum Expert Ace_XL's Avatar
    Join Date
    06-04-2012
    Location
    UAE
    MS-Off Ver
    2016
    Posts
    6,074

    Re: How do I calculate different percentages depending on the amount?

    Try..

    =SUMPRODUCT(--(A1>={0,50000,100000}),A1-{0,50000,100000},{0.4,-0.05,-0.05})
    Life's a spreadsheet, Excel!
    Say thanks, Click *

+ 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