+ Reply to Thread
Results 1 to 5 of 5

Price decrease when number goes over a certain point

  1. #1
    Registered User
    Join Date
    02-06-2013
    Location
    Wales
    MS-Off Ver
    Excel 2010
    Posts
    5

    Price decrease when number goes over a certain point

    Hi there

    Im a novice with Excel and would luv some help if possible guys?

    Probably something simple not sure if this should be in formula forum?

    Heres my problem

    Example

    If im selling apples at £0.50p each. value of apple in cell x qty = Price of apples

    But if someone purchases over 12 apples the value of apple reduces to £0.42p. How can i put that into a formula?

    Also another similar problem i think?

    If someone buys 15 apples they get (12 in a box of apples) 1 box and 3 single apples so 12 @ £0.42p & 3 @ £0.50p

    How can i write a formula so when i type in number of apples it works out the cost

    Many Thanks

    Much Appreciated

  2. #2
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Price decrease when number goes over a certain point

    You could try this (if number of apples sold is in A1:

    =IF(A1>=12,12*0.42+MOD(A1,12)*0.5,A1*0.5)

    - Moo
    Last edited by Moo the Dog; 02-06-2013 at 03:54 PM.

  3. #3
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,457

    Re: Price decrease when number goes over a certain point

    First scenario
    Please Login or Register  to view this content.
    Second one
    Please Login or Register  to view this content.

  4. #4
    Registered User
    Join Date
    02-06-2013
    Location
    Wales
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: Price decrease when number goes over a certain point

    Quote Originally Posted by Moo the Dog View Post
    You could try this (if number of apples sold is in A1:

    =IF(A1>=12,12*0.42+MOD(A1,12)*0.5,A1*0.5)

    - Moo

    Moo

    Thanks you are a star

    What would be the formula for the 1st example (if number of apples sold is in A1)

    Many Thanks

  5. #5
    Forum Expert Moo the Dog's Avatar
    Join Date
    09-28-2012
    Location
    Wisconsin
    MS-Off Ver
    Office 365 (PC & Mac)
    Posts
    1,845

    Re: Price decrease when number goes over a certain point

    The formula above "=IF(A1>=12,12*0.42+MOD(A1,12)*0.5,A1*0.5)" should be changed to the one below so it can account for multiple dozens:
    =IF(A1>=12,INT(A1/12)*12*0.42+MOD(A1,12)*0.5,A1*0.5)

    For the first example, I think you could get away with this:
    =IF(A1>12,A1*.42,A1*.5)

    - Moo

+ 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