+ Reply to Thread
Results 1 to 9 of 9

Help Calculating tiered pricing with price breaks

  1. #1
    Registered User
    Join Date
    02-15-2017
    Location
    Ft. Lauderdale, FL
    MS-Off Ver
    MS Excel 2010
    Posts
    5

    Help Calculating tiered pricing with price breaks

    Hi to all... I'm in need of help as I 'm a newbie to Excel as far as formulas and will appreciate any assistance, I'm using Excel 2010.
    I'm trying to calculate a tiered pricing format with price breaks in Excel to calculate fee's to my clients for ordering their products.
    I tried using different models like VLOOKUP, SUMPRODUCT, IF STATEMENT, Nested, etc... Couldn't get it to work.


    My fees are as follows:
    $5.00 Minimum / 1-2 Pieces
    $2.00 Per Case / 3-10 Pieces
    $20.00 Max / 11+ Pieces

    In column B under Pieces are the quantity of the order.
    In column C under Charges is where the result of the formula needs to be placed (Cost), highlighted in yellow is what the costs should result to.
    In Columns E, F & G are the fees with price breaks.

    Also you will see orders with 0 cases, so the charge will be of course $0 for those but we still have to report those as well.
    For some reason the attachment feature is not working so I'm copying and pasting a sample of the data here so you can copy and paste to a worksheet.
    Also attaching an image of how it should look:

    Order# Pieces Charge Pieces Fee
    BDS0535 9 18 1-2 $5.00 Minimum
    ARW1020 10 20 3-10 $2.00 Per Piece
    PRI1744 5 10 11+ $20.00 Maximum
    BDG1217-RESTOCK 0 0
    TDPC0059 1 5
    MVI0094 13 20
    CRC0079 3 6
    SOT0437 2 5
    TSV0012 1 5
    TSV0013 4 8
    LOC0197 2 5
    ACT0060-RESTOCKED 0 0
    ACT0061 15 20
    ACT0062-RESTOCKED 0 0
    ACT0063 11 20
    ACT0064-RESTOCKED 0 0

    Sample tiered pricing.PNG

    Again I appreciate any assistance.

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Help Calculating tiered pricing with price breaks

    Paste in C2 and fill down.

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

  3. #3
    Registered User
    Join Date
    02-15-2017
    Location
    Ft. Lauderdale, FL
    MS-Off Ver
    MS Excel 2010
    Posts
    5

    Re: Help Calculating tiered pricing with price breaks

    Thank you mehmetcik but unfortunately that didn't work... C2 to C17 were all given 20 as the charge, except for C11 which gave an 8 and that is correct.
    Technically C3, C7, C14 & C16 are also correct with 20 but it might just seem that way because most of the cells were given 20 as charge.

    The formulas I had tried produced the same result with all 20's.

  4. #4
    Registered User
    Join Date
    02-15-2017
    Location
    Ft. Lauderdale, FL
    MS-Off Ver
    MS Excel 2010
    Posts
    5

    Re: Help Calculating tiered pricing with price breaks

    Quote Originally Posted by mehmetcik View Post
    Paste in C2 and fill down.

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    I attempted to follow thru with your formula and made some changes but I still can't get it to work... But it looks like I'm getting closer.
    Also I made some changes to the spreadsheet to clarify better the fees section, maybe I wasn't clear with how that applies.
    And added numbers to the cells where I had 0. I attached the spreadsheet.

    This is the formula I was trying out: =IF(B2<2,5,IF(B2<11,(B2-11)*2,(B2-11)+20))
    Attached Files Attached Files

  5. #5
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,901

    Re: Help Calculating tiered pricing with price breaks

    Try this ...

    =IF(B2-2<=0,5,IF(B2-11>=0,20,B2*2))

  6. #6
    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
    28,152

    Re: Help Calculating tiered pricing with price breaks

    Try

    =IF(B2=0,0,IF(B2<=2,5,IF(B2<11,B2*2,20)))

  7. #7
    Registered User
    Join Date
    02-15-2017
    Location
    Ft. Lauderdale, FL
    MS-Off Ver
    MS Excel 2010
    Posts
    5

    Re: Help Calculating tiered pricing with price breaks

    Thank you Phuocam, that worked great! I see what I was missing.

  8. #8
    Registered User
    Join Date
    02-15-2017
    Location
    Ft. Lauderdale, FL
    MS-Off Ver
    MS Excel 2010
    Posts
    5

    Re: Help Calculating tiered pricing with price breaks

    Thanks John for your reply but what Phuocam gave me worked great.

  9. #9
    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
    28,152

    Re: Help Calculating tiered pricing with price breaks

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

+ 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] Tiered prorata pricing
    By danndoll in forum Excel Formulas & Functions
    Replies: 21
    Last Post: 11-25-2019, 12:29 PM
  2. Advanced Tiered Pricing
    By civik in forum Excel General
    Replies: 6
    Last Post: 11-10-2015, 11:24 AM
  3. [SOLVED] Trying to add tiered pricing to a CSV
    By rbsteve in forum Excel General
    Replies: 8
    Last Post: 07-01-2015, 04:57 AM
  4. [SOLVED] Tiered Pricing
    By unpuertomex in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 09-27-2012, 09:32 PM
  5. Replies: 4
    Last Post: 08-15-2012, 09:49 AM
  6. Tiered pricing
    By jimbojones82 in forum Excel General
    Replies: 1
    Last Post: 07-24-2012, 09:25 AM
  7. Tiered Pricing Question
    By tgrant in forum Excel General
    Replies: 4
    Last Post: 12-03-2010, 05:50 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