+ Reply to Thread
Results 1 to 4 of 4

Formula needed for multi level discounts for seperate blocks

  1. #1
    Registered User
    Join Date
    07-05-2012
    Location
    Pomona
    MS-Off Ver
    Excel 2007
    Posts
    3

    Formula needed for multi level discounts for seperate blocks

    I am stuck and cannot figure out how to setup a formual that will allow me to discount a price based on multiple criteria. Now the kicker is that a price can be eligible for multiple discounts. Here is an example we have setup up pricing and we state that the minimum has to be $10,000. If the minimum is met then the first block of $2000 that is above the minimum will be discounted 10% (basically anything from $10,001-12,000). Then if that is met we will then apply an another discount to the next block of $2000 which will be a 15% discount (anything from $12,001 - $14,000). Then anything above $14,000 will be given a 20% discount.
    I have been able to get that the 20% discount by subtracting the Total from 14,000 and multiply the answer by .20. But how can i get the remaining blocks to apply a discount only for each level of $2000. I cannot just multiply the discount to 2,000 because there may be cases where they have only purchased 11,050 which would mean i could only discount 1,050 with a 10% discount.

    Thank you in advance,

    Neal
    Last edited by neal1079; 07-05-2012 at 05:18 PM. Reason: Solved

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

    Re: Formula needed for multi level discounts for seperate blocks

    Crude try to start with...

    =IF(A1<10000,0,IF(A1<12000,MIN(A1-10000,2000)*0.1,IF(A1<14000,MIN(A1-12000,2000)*0.15+(2000*0.1),(A1-14000)*0.2+(2000*0.15)+(2000*0.1))))
    Life's a spreadsheet, Excel!
    Say thanks, Click *

  3. #3
    Registered User
    Join Date
    07-05-2012
    Location
    Pomona
    MS-Off Ver
    Excel 2007
    Posts
    3

    Re: Formula needed for multi level discounts for seperate blocks

    Thank you very much, I would have never thought to throw the MIN statement with the IF statement. I can also use this and cut it down by percentages to show exactly how much discount will be given by block.

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

    Re: Formula needed for multi level discounts for seperate blocks

    great..enjoy the forum. Please mark the thread as solved

    To mark your thread solved do the following:
    - Go to the first post
    - Click edit
    - Click Advance
    - Just below the word "Title:" you will see a dropdown with the word No prefix.
    - Change to Solve
    - Click Save

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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