Closed Thread
Results 1 to 18 of 18

Formula for tiered pricing

  1. #1
    Registered User
    Join Date
    01-28-2015
    Location
    london,england
    MS-Off Ver
    2013
    Posts
    3

    Formula for tiered pricing

    Hi all,

    I'm new to the forum and would really appreciate some help with working out a formula for tiered/progressive pricing. There was a post on this not so long ago by riaface and he got an answer which is very close to what I need.

    We are using a bulk mailing company to send out mass (they are legit before you ask) emails to our customers. The company's pricing structure is located at http://www.mailgun.com/pricing.

    A summary of their pricing is as follows:
    Emails Price Per Email
    0**-**10,000 Free
    Next 500,000 $0.00050
    Next 1,000,000 $0.00035
    Next 5,000,000 $0.00015
    Any Additional $0.00010

    The last post was from riaface was using a different company but with a very similar pricing structure located here https://mandrill.com/pricing/ - the formula that works well for this is:

    =IF(AND(A1>12000,A1<=1000000),((A1-12000)/1000)*0.2,IF(AND(A1>1000000,A1<=5000000),200+((A1-1012000)/1000)*0.15,IF(A1>5000000,950+((A1-6012000)/1000)*0.1)))

    Could any one of you experts help me with this before I lose my mind ;-)

    Thanks in advance.

  2. #2
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Formula for tiered pricing

    Hi there & welcome to the Excel Forum. The easiest way to do this is with SUMPRODUCT. Assuming that you enter the target no. of emails in A2, this will calculate the result that you want:

    =SUMPRODUCT(--(A2>{0,10000,510000,1510000}),--(A2-{0,10000,510000,1510000}),{0,0.0005,-0.00015,-0.0002})
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU

  3. #3
    Registered User
    Join Date
    01-28-2015
    Location
    london,england
    MS-Off Ver
    2013
    Posts
    3

    Re: Formula for tiered pricing

    Wow, what a fantastic response! This is spot on, thanks very much Glenn - really appreciate your help with this :-)

  4. #4
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Formula for tiered pricing

    You're welcome...

  5. #5
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Formula for tiered pricing

    ...and thanks for the Reputation.

  6. #6
    Registered User
    Join Date
    01-28-2015
    Location
    london,england
    MS-Off Ver
    2013
    Posts
    3

    Re: Formula for tiered pricing

    Well deserved, it's the closest I could get to buying you a beer!

  7. #7
    Registered User
    Join Date
    08-29-2016
    Location
    Orem, UT
    MS-Off Ver
    2016 Mac
    Posts
    3

    Re: Formula for tiered pricing

    Hi, I need help with a similar formula for my Excel sheet. We are working with a manufacturer who offers product based on the quantity that we order. The following is the breakdown:

    $450 1+ kilo
    $420 500 kilos
    $362 5100 kilos
    $316 10100 kilos

    I am trying to use this formula: =SUMPRODUCT(--(A2>{1,500,5100,10100}),--(A2-{1,500,5100,10100}),{450,420,362,316}) But it's not giving me the result I need. Could anyone please assist? Thanks!

  8. #8
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Formula for tiered pricing

    Hi. ry this. If it doesn't give the correct answer, please post some values and their expected answers.

    =SUMPRODUCT(--(A2>{0,500,5000,10000}),--(A2-{0,500,5000,10000}),{450,-30,-58,-36})

  9. #9
    Registered User
    Join Date
    08-29-2016
    Location
    Orem, UT
    MS-Off Ver
    2016 Mac
    Posts
    3

    Re: Formula for tiered pricing

    Quote Originally Posted by Glenn Kennedy View Post
    Hi. ry this. If it doesn't give the correct answer, please post some values and their expected answers.

    =SUMPRODUCT(--(A2>{0,500,5000,10000}),--(A2-{0,500,5000,10000}),{450,-30,-58,-36})
    Hi Glenn, thanks for the fast response!! I have tried this formula and it still isn't working properly. For example, if I input 5500 into A2, the result should be 1,991,000, due to 5500*362. But instead, when plugged into the formula it returns: 2,296,000, which is much higher. Am I missing something?

  10. #10
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Formula for tiered pricing

    Your description was a bit lacking in detail. I had assumed that the first 500 kg cost 450, 500-5000 cost 420, etc.

    try this
    Attached Files Attached Files

  11. #11
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2406
    Posts
    44,662

    Re: Formula for tiered pricing

    Hi. Your explanation was far from clear. I had assumed that the first 500 kg cost 450, the next 4500 kg cost 420, etc. Try this
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    08-29-2016
    Location
    Orem, UT
    MS-Off Ver
    2016 Mac
    Posts
    3

    Re: Formula for tiered pricing

    Quote Originally Posted by Glenn Kennedy View Post
    Hi. Your explanation was far from clear. I had assumed that the first 500 kg cost 450, the next 4500 kg cost 420, etc. Try this
    Sorry that was my bad! I'm new to all of this. Thank you so much for your help... the new form is perfect. You're amazing.

    Thanks again!!!

  13. #13
    Registered User
    Join Date
    11-02-2016
    Location
    NC, USA
    MS-Off Ver
    Office 365
    Posts
    6

    Re: Formula for tiered pricing

    Thanks for all of this brilliance Glenn Kennedy, I am new to the forum and hope to borrow some. I have read through and believe my need is closer to ry's post. I am looking for a cumulative total from the tier using sumproduct.

    =SUMPRODUCT(--(C9>{0,101,501,1001,1501,2000}),--(C9-{0,101,501,1001,1501,2000}),{100,-25,-25,-25,-10,-6})
    C9=Input

    I am so close I can taste it thanks to you. I have broken out a manual calculation along with a breakdown of units/cost in each tier to check the formula. Any help is much appreciated!

    Please see the image:Screen Shot 2016-11-03 at 9.50.44 AM.png

    I cannot seem to get my manual calculation to line up with the formula. Please note the calculation and input fields.

  14. #14
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    53,048

    Re: Formula for tiered pricing

    alewis1983 welcome to the forum

    Unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  15. #15
    Registered User
    Join Date
    11-02-2016
    Location
    NC, USA
    MS-Off Ver
    Office 365
    Posts
    6

    Re: Formula for tiered pricing

    FD - You got it, thank you. I guess I looked at RY's "new question" in UNK's original post and thought..."Efficiency!". However, I get and appreciate the benefits. I will do just that. Cheers!

  16. #16
    Registered User
    Join Date
    06-21-2017
    Location
    ventura
    MS-Off Ver
    2016
    Posts
    3

    Trying to figure out tier pricing

    0-10,000 transactions = $1,000
    10,001-50,000 transactions = $5,000
    50,001-150,000 transactions = $15,000
    150,001-500,000 transactions = $30,000
    500,001-1,000,000 transactions = $60,000

    I would like to figure out a formula to where I multiply users by transactions and it displays one of the tiers

  17. #17
    Registered User
    Join Date
    06-21-2017
    Location
    ventura
    MS-Off Ver
    2016
    Posts
    3

    Re: Formula for tiered pricing

    Here is their tier table
    0-10,000 transactions = $1,000
    10,001-50,000 transactions = $5,000
    50,001-150,000 transactions = $15,000
    150,001-500,000 transactions = $30,000
    500,001-1,000,000 transactions = $60,000

    I would like to figure out a formula to where it will multiply users by transactions and it displays one of the tiers. That way I can adjust the number of transactions and it would change the to the correct tier pricing

    For example: If there is 500 users who each make 1 transaction it would sum $1,000 or if there was 500 users who each make 21 transactions it would sum $5,000.

  18. #18
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (both in England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2504 (Windows 11 Home 24H2 64-bit)
    Posts
    90,721

    Re: Formula for tiered pricing

    Cbolin - unfortunately your post does not comply with Rule 2 of our Forum RULES. Do not post a question in the thread of another member -- start your own thread.

    If you feel an existing thread is particularly relevant to your need, provide a link to the other thread in your new thread.

    Old threads are often only monitored by the original participants. New threads not only open you up to all possible participants again, they typically get faster response, too.

    Thread closed.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help. It's a universal courtesy.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    NB:
    as a Moderator, I never accept friendship requests.
    Forum Rules (updated August 2023): please read them here.

Closed Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Formula for tiered pricing
    By riaface in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 10-16-2014, 12:38 PM
  2. Replies: 6
    Last Post: 01-11-2014, 01:47 PM
  3. HELP required - cannot create formula to auto calculate tiered pricing...
    By dcj1606 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 07-18-2013, 05:16 PM
  4. [SOLVED] Tiered Pricing
    By unpuertomex in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 09-27-2012, 09:32 PM
  5. Tiered pricing
    By jimbojones82 in forum Excel General
    Replies: 1
    Last Post: 07-24-2012, 09:25 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