+ Reply to Thread
Results 1 to 10 of 10

charging 3 different fees on 1 value

  1. #1
    Registered User
    Join Date
    09-23-2014
    Location
    Toronto
    MS-Off Ver
    Excel 2007 & 2013
    Posts
    2

    charging 3 different fees on 1 value

    Hi,

    I want to calculate the fee

    An annualized rate of 45% on first $100 million
    then 40% on the next $100 million
    and 35% on remaining value thereafter

    can someone please help me with this
    thanks

  2. #2
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: charging 3 different fees on 1 value

    Try this

    =MIN(100000000,A1)*0.45 + MIN(MAX(0, A1-100,0,0),100,0,0)*0.4+MAX(0,A1-200,0,0)* 0.35
    ChemistB
    My 2?

    substitute commas with semi-colons if your region settings requires
    Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
    If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)

    Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble

  3. #3
    Registered User
    Join Date
    09-23-2014
    Location
    Toronto
    MS-Off Ver
    Excel 2007 & 2013
    Posts
    2

    Re: charging 3 different fees on 1 value

    @ChemistB thanks for your reply but its not working

    by doing the individual calculation like following i am getting the total of 46,000. where as your formula giving me 106,917

    A1= 46,000,000 = (A1*.0045/12)
    A2= 146,000,000 = (A2-100000000)*.0040/12
    A3=246,000,000 = (A3-200000000)*.0035/12

  4. #4
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: charging 3 different fees on 1 value

    Sorry, I used 45%, not 0.45% annual compounded monthly and also put in comma separators which messed up the formula. It should be

    =MIN(100000000,A1)*0.45%/12 + MIN(MAX(0, A1-100000000),100000000)*0.4%/12+MAX(0,A1-200000000)* 0.35%/12

    See attached
    Attached Files Attached Files

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: charging 3 different fees on 1 value

    Another way:

    A
    B
    C
    1
    Amount
    Fee
    2
    100,000,000
    37,500.00
    B2: =SUMPRODUCT((A2 > {0;1;2}*100000000) * (A2 - {0;1;2}*100000000) * ({45;-5;-5})%%) / 12
    3
    200,000,000
    70,833.33
    4
    543,123,000
    170,910.88
    Entia non sunt multiplicanda sine necessitate

  6. #6
    Forum Guru
    Join Date
    08-05-2004
    Location
    NJ
    MS-Off Ver
    365
    Posts
    13,582

    Re: charging 3 different fees on 1 value

    That's pretty cool, SHG. I just learned something new. Thanks

  7. #7
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: charging 3 different fees on 1 value

    Hi,

    One way

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

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  8. #8
    Forum Guru samba_ravi's Avatar
    Join Date
    07-26-2011
    Location
    Hyderabad, India
    MS-Off Ver
    Excel 2021
    Posts
    8,915

    Re: charging 3 different fees on 1 value

    =lookup(a1,{0.1,100000000.1,200000000.1},{45,40,35}*a1%+{0,5000000,15000000})/12
    sorry for earlier post
    Last edited by samba_ravi; 09-24-2014 at 07:26 AM.
    Samba

    Say thanks to those who have helped you by clicking Add Reputation star.

  9. #9
    Forum Expert boopathiraja's Avatar
    Join Date
    07-12-2013
    Location
    Coimbatore,TamilNadu, India
    MS-Off Ver
    Excel 2007, 2013, 2016, 365
    Posts
    1,455

    Re: charging 3 different fees on 1 value

    try this

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Click just below left if it helps, Boo?ath?

  10. #10
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: charging 3 different fees on 1 value

    ...correction to typo in #7

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Last edited by Richard Buttrey; 09-24-2014 at 08:37 AM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Incremental Charging
    By JonesZoid in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 04-10-2014, 04:36 AM
  2. Laptop Charging
    By Lennnny in forum The Water Cooler
    Replies: 3
    Last Post: 01-06-2014, 04:12 PM
  3. Replies: 6
    Last Post: 06-08-2012, 11:28 AM
  4. [SOLVED] Mileage Tracking and Charging
    By cdejan72 in forum Excel General
    Replies: 5
    Last Post: 05-29-2012, 11:38 AM
  5. Pulling data from a charging file!
    By Badandy400 in forum Excel Programming / VBA / Macros
    Replies: 13
    Last Post: 10-04-2007, 10:25 AM

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