+ Reply to Thread
Results 1 to 4 of 4

Formula for Tiered fee rates

  1. #1
    Registered User
    Join Date
    04-09-2015
    Location
    Boston
    MS-Off Ver
    2013
    Posts
    1

    Formula for Tiered fee rates

    Hi all,
    I'm trying to find the correct formula for calculated tiered fee rates. I have the following to determine for any amount up to $500,000:

    Min Max Rate
    Tier 1 $0.00 25,000.00 1.00%
    Tier 2 $25,000.01 50,000.00 0.75%
    Tier 3 $50,000.01 100,000.00 0.50%
    Tier 4 $100,000.00 500,000.00 0.25%

    Most answers I'm seeing are similar to this:
    =IF(AND(CELL1>0.00,
    CELL1<25000.00),
    CELL1*0.01,
    IF(AND (CELL1>25000.01,
    CELL1<50000.00),
    CELL2*0.0075,)


    Anyone know if this would be correct? I'm not sure what values need to be replaced in order to work correctly within my worksheet.

    Thanks!
    Sam

  2. #2
    Forum Contributor
    Join Date
    03-17-2005
    Location
    Canterbury, Kent
    MS-Off Ver
    2003, 2010
    Posts
    285

    Re: Formula for Tiered fee rates

    Does this help Sam

    =LOOKUP(D1,{0,25001,50001,100001},{"1.00%","0.75%","0.5%","0.25%"})

    Change the D1 to where your value is.

    Windy

  3. #3
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,047

    Re: Formula for Tiered fee rates

    Hi, welcome to the forum

    there are a number of ways to do this, 1 would include creating a table with the min values for each level, along with their %...
    M
    N
    3
    0
    1
    4
    25
    0.75
    5
    50
    0.5
    6
    100
    0.25
    7
    8
    49
    0.75


    Or, you could use a nested IF statement...
    =IF(M8>=100,0.25,IF(M8>=50,0.5,IF(M8>=25,0.75,1)))

    the table is more flexable and allows for easier editing and adding to
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  4. #4
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Formula for Tiered fee rates

    Is this what you're looking for?

    http://mcgimpsey.com/excel/variablerate.html
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

+ 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] Formula for calculating a value based on tiered percentage rates
    By d_max_c in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-07-2014, 04:04 AM
  2. Formula for tiered percentages
    By cjrhoads in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 10-25-2013, 01:42 AM
  3. 2 Tiered Commisions Formula
    By mondo21 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 10-18-2012, 12:35 PM
  4. Tiered tax rates
    By BenVH in forum Excel General
    Replies: 7
    Last Post: 08-17-2011, 08:06 PM
  5. Expense S/S with tiered rates and minimums
    By arhurdaly in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-03-2007, 11:33 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