+ Reply to Thread
Results 1 to 13 of 13

Formula to calculate stepped charges

  1. #1
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Formula to calculate stepped charges

    Hi guys

    I have an annoying problem trying to work out a stepped charge.

    To explain what I mean, consider the following:

    Start End Charge applicable (%)
    £0.00 £149,999.99 0.30%
    £150,000.00 £999,999.99 0.25%
    £1,000,000.00 £2,499,999.99 0.20%
    £2,500,000.00 £5,000,000.00 0.15%
    £5,000,000.00 £10,000,000.00 0.10%

    I want to find out the $ charge that applies to X.

    Examples:

    If X = $20,000, then the charge tier is 0.30%, and the charge is equal to £20,000 * 0.30% = $60.

    If X = $200,000, then the charge tier is 0.25%, and the charge is equal to £200,000 * 0.25% = $500.

    If X = $2,000,000, then the charge tier is 0.20%, and the charge is equal to £2,000,000 * 0.20% = $4000.

    In the UK we call this "stepped charging", and financial institutions use it as a method of incentivising clients to invest more with them.

    I think I could work it out in a series of iterative steps e.g. if X = $2,000,000, then $ charge = ($ max value of first tier) + ($ max value of second tier) + (($2,000,000 - $1,000,000) * 0.20%) etc.

    However, I'm sure a more elegant and adaptable solution exists. The annoying thing is, I worked this out previously and I'm sure I used a nested IF SUMPRODUCT array. It looked hellish, but it did the job. I just can't get my brain to work...
    Attached Files Attached Files
    Last edited by fragandclear; 02-29-2024 at 01:30 PM.

  2. #2
    Forum Expert
    Join Date
    09-25-2015
    Location
    Milan Italy
    MS-Off Ver
    office 365
    Posts
    1,782

    Re: Formula to calculate stepped charges

    G2=LOOKUP([@[Value £]],$B$2:$C$6,$D$2:$D$6)

    copy down

    F2=[@[Value £]]*[@[Platform charge %]]

    Copy dow

  3. #3
    Forum Expert
    Join Date
    04-14-2009
    Location
    Taiwan
    MS-Off Ver
    Excel 2016,2019,O365
    Posts
    2,005

    Re: Formula to calculate stepped charges

    One way, Try this in G2 and committed with Ctrl+Shift+Enter.

    Please Login or Register  to view this content.
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    That is exactly the format I'm after, however for some reason it is not producing the correct answers.

    For example an investment of £900,000 displays a charge of £2,325 instead of £2,250.

    How can that be?

  5. #5
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    Thanks CARACALLA. Your solution works perfectly in the format I disclosed.

    I should have added I am also looking to condense the formula to look at one cell (the investment value) and then display the answer in another cell.

  6. #6
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    Quote Originally Posted by windknife View Post
    One way, Try this in G2 and committed with Ctrl+Shift+Enter.

    Please Login or Register  to view this content.
    That is exactly the format I'm after, however for some reason it is not producing the correct answers.

    For example an investment of £900,000 displays a charge of £2,325 instead of £2,250.

    How can that be?

  7. #7
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    Quote Originally Posted by fragandclear View Post
    That is exactly the format I'm after, however for some reason it is not producing the correct answers.

    For example an investment of £900,000 displays a charge of £2,325 instead of £2,250.

    How can that be?
    I have confused matters by having a tiered formula in column F. This is incorrect and must be distracting.

  8. #8
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,206

    Re: Formula to calculate stepped charges

    I think you are wrong: it is £2325

    150,000*0.3% +750,000*0.25%
    Attached Files Attached Files
    Last edited by JohnTopley; 02-29-2024 at 12:42 PM.
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  9. #9
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    Quote Originally Posted by JohnTopley View Post
    I think you are wrong: it is 2335

    150,000*0.3% +750,000*0.25%
    Hi John, the method you are describing is how a tiered charge would work.

    I am looking for a formula for a stepped charge i.e. once investment value X exceeds a threshold, the whole investment is charged at the next tier (until the last tier is reached).

  10. #10
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    The investment company Elevate uses the charging structure I am referring to.

    Regrettably I can't post a link to their worked example because I haven't reached the arbitrary post limit that allows me to share links.

  11. #11
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,206

    Re: Formula to calculate stepped charges

    Try

    in F2

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

  12. #12
    Registered User
    Join Date
    01-23-2014
    Location
    Edinburgh, Scotland
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Formula to calculate stepped charges

    Quote Originally Posted by JohnTopley View Post
    Try

    in F2

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

    Thank you so much!

  13. #13
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,206

    Re: Formula to calculate stepped charges

    You're welcome and thank you for the rep.

+ 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. Formula to calculate Monthly charges between two dates
    By Vellfire in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 09-02-2022, 06:50 PM
  2. Formula to Calculate a Stepped Pay Incentive bonus
    By melissafr in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 04-27-2020, 08:20 AM
  3. Replies: 9
    Last Post: 07-26-2019, 03:55 PM
  4. [SOLVED] Formula help to calculate stepped commission percentage in a range
    By Thatguy99 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 05-22-2019, 03:49 AM
  5. [SOLVED] Formula to calculate cancellation charges due
    By duckersj in forum Excel General
    Replies: 17
    Last Post: 02-27-2017, 10:30 AM
  6. [SOLVED] Formula Help... Calculating charges based on stepped rates.
    By HoosierIT in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 06-23-2014, 05:55 PM
  7. VBA to calculate charges
    By choo in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 12-05-2005, 10:20 PM

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