+ Reply to Thread
Results 1 to 10 of 10

Discount Formula

  1. #1
    Registered User
    Join Date
    03-13-2013
    Location
    Adams, NY
    MS-Off Ver
    Excel 2010
    Posts
    7

    Discount Formula

    Hello,

    I'm trying to create a price worksheet.

    An album has a base price. Additional pages can be ordered. If a client orders 2 albums, the second one (including any additional pages ordered) will be 15% off. If they order 3 or more, any additional albums (after the first 2) will be 25% off (including any additional pages ordered).

    I'd like to enter the number of albums ordered and the number of additional pages and have the above calculated.

    Any help would be appreciated!

    Thanks.

    Excel Question.jpg

  2. #2
    Registered User
    Join Date
    01-20-2017
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    199

    Re: Discount Formula

    Try this in F3 and copy down:

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

  3. #3
    Registered User
    Join Date
    03-13-2013
    Location
    Adams, NY
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Discount Formula

    Thanks. That looks great, except I only want the discounts to apply to the additional albums.

    For example, they ordered 4 of the 5x5 albums and add 2 spreads to them. The first album would be $380+$32=$412, the second would be $412*.85=$350.20, the third and fourth would be $412*.75=$309 for a total of $412+$350.20+$309+$309=$1380.20.

    Any idea how to achieve that?

    Thanks!

  4. #4
    Registered User
    Join Date
    03-13-2013
    Location
    Adams, NY
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Discount Formula

    Thanks. That looks great, except I only want the discounts to apply to the additional albums.

    For example, they ordered 4 of the 5x5 albums and add 2 spreads to them.
    The first album would be $380+$32=$412, the second would be $412*.85=$350.20,
    the third and fourth would be $412*.75=$309 for a total of $412+$350.20+$309+$309=$1380.20.

    Any idea how to achieve that?

    Thanks!

  5. #5
    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,783

    Re: Discount Formula

    Try

    =($B3+$D3*$E3)*IF($C3=1,1,IF($C3=2,1.85,($C3-2)*0.75+1.85))

  6. #6
    Registered User
    Join Date
    01-20-2017
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    199

    Re: Discount Formula

    I hope this is what you had in mind. I inserted a subtotal column D then added that to the additional spreads quantity times price.

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


    In G3:

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

  7. #7
    Registered User
    Join Date
    03-13-2013
    Location
    Adams, NY
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Discount Formula

    Try

    =($B3+$D3*$E3)*IF($C3=1,1,IF($C3=2,1.85,($C3-2)*0.75+1.85))

    This works! Thanks. One last question, how do I keep the total field either empty or at $0 if there is no number entered into the quantity fields?
    Last edited by WSheehey; 02-06-2017 at 02:49 PM.

  8. #8
    Registered User
    Join Date
    01-20-2017
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    199

    Re: Discount Formula

    =if(c3<>0,($b3+$d3*$e3)*if($c3=1,1,if($c3=2,1.85,($c3-2)*0.75+1.85)),0)

  9. #9
    Registered User
    Join Date
    03-13-2013
    Location
    Adams, NY
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Discount Formula

    Quote Originally Posted by JohnTopley View Post
    Try

    =($B3+$D3*$E3)*IF($C3=1,1,IF($C3=2,1.85,($C3-2)*0.75+1.85))
    Quote Originally Posted by BillyRaySpivy View Post
    =if(c3<>0,($b3+$d3*$e3)*if($c3=1,1,if($c3=2,1.85,($c3-2)*0.75+1.85)),0)
    Awesome! Thanks so much!!

  10. #10
    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,783

    Re: Discount Formula

    Try

    =IF(AND(C3=0,E3=0),0,($B3+$D3*$E3)*IF($C3=1,1,IF($C3=2,1.85,($C3-2)*0.75+1.85)))

+ 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. Percentage discount formula for a grid of figures and a different discount figure
    By SkydiveAnnie in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 10-31-2013, 11:09 AM
  2. [SOLVED] Discount Formula?
    By wonderd in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 05-17-2013, 07:41 PM
  3. [SOLVED] Add or discount % formula
    By hecgroups in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 06-13-2012, 01:46 PM
  4. 15% discount formula
    By shelleysgifts in forum Excel General
    Replies: 3
    Last Post: 10-03-2007, 06:21 PM
  5. [SOLVED] Discount Formula
    By Dave in forum Excel General
    Replies: 3
    Last Post: 05-15-2006, 07:45 PM
  6. Replies: 1
    Last Post: 12-02-2005, 12:06 PM
  7. [SOLVED] formula discount
    By need formula as soon as posible in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 06-10-2005, 08:05 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