+ Reply to Thread
Results 1 to 3 of 3

scaled rate card

  1. #1
    Registered User
    Join Date
    10-14-2022
    Location
    London, England?
    MS-Off Ver
    a newer one
    Posts
    1

    scaled rate card

    Hello there,
    I am desperate for some help as all I can find are commission plans with this kind of logic.
    1 $9.99
    2 ? 5 $8.99 for each unit after 1st
    6-15 $7.99 for each unit after 5th
    16 ? 30 $6.99 for each unit after 15th
    31 ? 100 $4.99 for each unit after 30th
    101 ? 1000 $4.49 for each unit after 100th

    I'd like to create and excel calculator with the above price rules.
    Any help would be appreciated, i am at a loss. I tried to work with vlookup and never got to a result.
    Thanks

  2. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,283

    Re: scaled rate card

    For an amount if B2, use

    =MIN(1,B2)*9.99+MAX(0,MIN(4,B2-1))*8.99+MAX(0,MIN(10,B2-5))*7.99+MAX(0,MIN(15,B2-15))*6.99+MAX(0,MIN(70,B2-30))*4.99+MAX(0,B2-100)*4.49
    Bernie Deitrick
    Excel MVP 2000-2010

  3. #3
    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
    30,802

    Re: scaled rate card

    Try

    =SUMPRODUCT(($E$2>=$B$2:$B$7)*($E$2-$B$2:$B$7),$C$2:$C$7)

    See attached: table in B2:C7

    see for explanation: http://www.mcgimpsey.com/excel/variablerate.html
    Attached Files Attached Files
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

+ 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] Mahing prices vs. rate card with criteria
    By tis1337 in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 10-18-2016, 05:04 AM
  2. Calculating Card Surcharge, only when paying by card
    By OneScotty2Hotty in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-03-2016, 01:55 PM
  3. [SOLVED] Formula to Perform a Rate Card Check (Non-Array Solution)
    By The_Snook in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 08-02-2016, 10:03 AM
  4. [SOLVED] Formula to Validate Invoiced Rates Against a Rate Card
    By The_Snook in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 03-30-2014, 02:49 PM
  5. [SOLVED] Credit card type based on card number
    By wlsnoops in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-26-2013, 10:25 AM
  6. Scaled bonus help
    By newalker91 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 08-26-2012, 12:47 AM
  7. [SOLVED] Scaled Chart Axes
    By patrick in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 03-18-2005, 10:06 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