+ Reply to Thread
Results 1 to 6 of 6

Discount prices based on order quantity and package quantity

  1. #1
    Registered User
    Join Date
    11-20-2009
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2003
    Posts
    7

    Discount prices based on order quantity and package quantity

    I have two idential spreadsheets with several rows of items each with different packaging quantities, price break quantities and corrisponding prices next to each break quantity. I'm trying to build a discounting sheet on an idential page by using formulas that read off the price sell in the same relative position on sheet 2. Below is one row of sheet1 and the idential row of sheet2 - underneath the cells are the rules I would like incorporate:

    Sheet 1
    A B C D E F G
    1 Pack Qty Qty 1 Prc 1 Qty 2 Prc 2 Qty 3 Prc 3
    2 100 1 0.9 100 0.74 400 0.6

    Sheet 2
    A B C D E F G
    1 Pack Qty Qty 1 Prc 1 Qty 2 Prc 2 Qty 3 Prc 3
    2 100 1 0.9 100 0.74 400 0.6



    Sheet 1 formulas
    Each Price Field Rules

    If Quantity (one cell left) > than 24,999 = Corresponding price field (sheet 2)
    If Quantity (one cell left) > 10,000 and < 25,000 = Corrisponding price field (sheet 2) *.9
    If Quantity (one cell left) > 5,000 and < 10,000 = Corrisponding price field (sheet 2) *.85
    If Quantity (one cell left) > 2,500 and < 5,000 = Corrisponding price field (sheet 2) *.8
    If Quantity (one cell left) > 1,00 and < 2,500 = Corrisponding price field (sheet 2) *.75
    If Quantity (one cell left) < or equal to package quantity = Corrisponding price field (sheet 2) *.70

    Thanks!
    Last edited by jbrandau; 11-23-2009 at 06:23 PM. Reason: Inncorrect Title

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,601

    Re: If then or array?

    Please, rename your title according to the rules

    Hint: try to explain problem in title and not formulas that might be used

  3. #3
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,601

    Re: Develop formula to discount prices based on order quantity and package quantity

    How about this?

    =LOOKUP(A1,{0,1,2500,5000,10000,25000},{0.7,0.75,0.8,0.85,0.9,1})*B1

    Adjust ranges where you need.

  4. #4
    Registered User
    Join Date
    11-20-2009
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Develop formula to discount prices based on order quantity and package quantity

    Thanks for the suggestion Zbor.

    In your formula A1 is equal to the cell the the left of where I want the result (which has the quantity) correct?

    Is B1 equal to the cell that contains the price that I would like to discount? Should this be an individual cell or a range?

    Thanks,

    John

  5. #5
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,601

    Re: Develop formula to discount prices based on order quantity and package quantity

    Correct. Individual cell.

    A1 is quantity wich give you factor with LOOKUP function (for example 0,85). Discount actually.
    Then you mutliply it with price you need.

    So you basically get 0,85*B1 but this factor is various depending on quantity.

    Just pull formula down to all cells you need
    Last edited by zbor; 11-23-2009 at 05:54 PM.

  6. #6
    Registered User
    Join Date
    11-20-2009
    Location
    Chicago, IL
    MS-Off Ver
    Excel 2003
    Posts
    7

    Re: Discount prices based on order quantity and package quantity

    Thanks - worked perfectly!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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