+ Reply to Thread
Results 1 to 9 of 9

Tiered Pricing Structure; Array or Index Lookup

  1. #1
    Registered User
    Join Date
    10-21-2016
    Location
    CA
    MS-Off Ver
    2013
    Posts
    4

    Tiered Pricing Structure; Array or Index Lookup

    Hi,

    I am trying to calculate a unit cost based on the following unit price structure, but would like to make the cost variable inputs so that I have the ability to change the costs at any given tier...Thanks in advance for your help!!!

    Units: Price per unit each

    0-1 units: $33.792
    Next 49 Units: $33.178
    Next 450 Units: $32.666
    Next 500 units: $32.051
    Next 400 units: $31.539

    My units might vary from month to month, so that would also need to be a variable input. So for example if I have 50 units, my first unit would be at $33.792 and the next 49 at $33.178.

    Any help would be greatly appreciated!!!

  2. #2
    Forum Expert
    Join Date
    08-02-2013
    Location
    Québec
    MS-Off Ver
    Excel 2003, 2007, 2013
    Posts
    1,412

    Re: Tiered Pricing Structure; Array or Index Lookup

    Hi and welcome to the forum,

    Here's a example. The trick is to use the combination of INDEX and MATCH formulas.

    In A1 to A5, enter the minimum qty of each tier:
    0 (or 1) / 2 / 51 / 501 / 1001

    In B1 to B5, enter the corresponding unit price:
    33.792 / 33.178 / 33.666 / 32.052 / 31.539

    In C1, enter the qty you want, exemple 17

    In D1, enter this formula:
    Please Login or Register  to view this content.
    GC Excel

    If this post helps, then click the star icon (*) in the bottom left-hand corner of my post to Add reputation.

  3. #3
    Forum Contributor
    Join Date
    12-22-2010
    Location
    Rio, Brazil
    MS-Off Ver
    Excel 2010, 2016
    Posts
    209

    Re: Tiered Pricing Structure; Array or Index Lookup

    Maybe this can help
    http://www.mcgimpsey.com/excel/variablerate.html

    M.
    Marcelo Branco

  4. #4
    Registered User
    Join Date
    10-21-2016
    Location
    CA
    MS-Off Ver
    2013
    Posts
    4

    Re: Tiered Pricing Structure; Array or Index Lookup

    Thanks for your help GC Excel. I would need to also use sumproduct as well, no? This gives me the ending price tier. Thanks again, total excel newbie here

  5. #5
    Registered User
    Join Date
    10-21-2016
    Location
    CA
    MS-Off Ver
    2013
    Posts
    4

    Re: Tiered Pricing Structure; Array or Index Lookup

    Thanks Marcelo! Im trying to use an array but cant seem to get it to work..

  6. #6
    Forum Contributor
    Join Date
    12-22-2010
    Location
    Rio, Brazil
    MS-Off Ver
    Excel 2010, 2016
    Posts
    209

    Re: Tiered Pricing Structure; Array or Index Lookup

    Following the ideas presented on McGimpsey & Associates website (link in post #3) with small adjustments, try something like this


    A
    B
    C
    D
    E
    F
    G
    H
    I
    J
    K
    L
    1
    From unit
    To unit
    Cost
    Marginal Cost
    Units
    Total Cost
    Units
    Cost
    2
    Tier 1
    1
    1
    33,792
    33,792
    52
    1724,846
    Tier 1
    1
    33,792
    3
    Tier 2
    2
    50
    33,178
    -0,614
    Tier 2
    49
    1625,722
    4
    Tier 3
    51
    500
    32,666
    -0,512
    Tier 3
    2
    65,332
    5
    Tier 4
    501
    1000
    32,051
    -0,615
    Tier 4
    0
    0,000
    6
    Tier 5
    1001
    31,539
    -0,512
    Tier 5
    0
    0,000
    7
    Total
    52
    1724,846
    8


    Formula in E2
    =D2

    Formula in E3 copied down till E6
    =D3-D2

    Put the quantity of units you need in G2 and to calculate the cost insert this formula in H2
    =SUMPRODUCT(--(G2>=$B$2:$B$6),1+G2-$B$2:$B$6,$E$2:$E$6)

    Remark: the gray area, columns J to L, shows another way to achieve the same goal and also has checking purposes.
    Formula in K2 copied down till K6
    =IF(C2="",$G$2-SUM(K$1:K1),MIN($G$2-SUM(K$1:K1),C2-N(C1)))

    Formula in K7
    =SUM(K2:K6)

    Formula in L2 copied down till L6
    =K2*D2

    Formula in L7
    =SUM(L2:L6)

    Hope this helps

    M.

  7. #7
    Registered User
    Join Date
    10-21-2016
    Location
    CA
    MS-Off Ver
    2013
    Posts
    4

    Re: Tiered Pricing Structure; Array or Index Lookup

    Thanks MLCB! Works perfectly, much 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 2403
    Posts
    44,063

    Re: Tiered Pricing Structure; Array or Index Lookup

    here's a simpler formula. If your ordered quantity is in cell A2:

    =SUMPRODUCT(--(A2>{0,1,50,500,1000}),--(A2-{0,1,50,500,1000}),{33.792,-0.614,-0.512,-0.615,-0.512})
    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.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

  9. #9
    Forum Contributor
    Join Date
    12-22-2010
    Location
    Rio, Brazil
    MS-Off Ver
    Excel 2010, 2016
    Posts
    209

    Re: Tiered Pricing Structure; Array or Index Lookup

    Quote Originally Posted by beermn540 View Post
    Thanks MLCB! Works perfectly, much thanks!!!
    You are welcome. Glad to help

    M.

+ 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. Advanced Tiered Pricing
    By civik in forum Excel General
    Replies: 6
    Last Post: 11-10-2015, 11:24 AM
  2. [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
  3. Replies: 6
    Last Post: 01-11-2014, 01:47 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
  6. Nested IF for tiered pricing structure?
    By ziyal9 in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 09-27-2011, 02:25 AM
  7. Tiered Pricing Question
    By tgrant in forum Excel General
    Replies: 4
    Last Post: 12-03-2010, 05:50 PM

Tags for this Thread

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