Tiered Pricing - Summary of a subset of tiered data

SomeGuy84

New Member
Joined
Aug 12, 2015
Messages
4
Hi folks,
It's a tiered pricing question! I've seen a great many posts about tiered pricing on here, although I don't seem to be able to find one that particularly addresses the situation I have. This may just be because it's a slightly cumbersome scenario to reduce to succint search terms, so I rather hope someone can either translate my issue into a link to another post, or assist me with it here.
So, tiered pricing. I have a set of data which consists simply of a number of transactions and some fees. I've created a little Sub to calculate the total value of the fees and the unit cost, and that all works nicely.
The issue arises from the fact that this number of transactions then needs to be broken down into two groups. Let me try to demonstrate what I mean (example data):
Total transactions = 50000
Total transactions in group A = 40000
Total transactions in group B = 10000
First 15000 transactions @ Tier 1 rate = 0.5p
Next 15000 transactions @ Tier 2 rate = 0.3p
Next 15000 transactions @ Tier3 rate = 0.2p
All transactions above 45000 @ Tier4 rate 0.15p
Transactions in group A are always priced first, followed by those in group B. This doesn't matter when the figures for the whole total of transactions are processed. However, when I need to calculate the value of the fees and unit cost just for group B, it quickly gets a bit tricky, because the tier that those group B transactions start at is dependant on how many transactions were in group A.
Even describing this I'm not sure it makes sense, so here's the actual data (I've changed some names because I think this may be potentially sensitive and might get me in a spot of bother at work )
First of all, here's one of the subs that calculates the overall tiered pricing, which I suspect I will need to alter to also do the pricing for 'Group B', which in reality is 'EU Transactions':
Code:
Sub CalcType1Fees(totalTransactions As Long)
    Dim tier1, tier2, tier3, tier4 As Long
    Dim rTier1, rTier2, rTier3, rTier4 As Double
    Dim totalEUTransactions As Long
    
    'get tier values and rates
    tier1 = Range("A30").Value
    rTier1 = Range("B30").Value
    
    tier2 = Range("A31").Value
    rTier2 = Range("B31").Value
    
    tier3 = Range("A32").Value
    rTier3 = Range("B32").Value
    
    tier4 = Range("A33").Value
    rTier4 = Range("B33").Value
    
    rTier5 = Range("B34").Value
    
    totalEUTransactions = totalTransactions - Range("B5").Value

    If totalTransactions <= tier1 Then
        'first tier
        Range("I5").Value = totalTransactions * rTier1
    ElseIf (totalTransactions > tier1) And (totalTransactions <= tier1 + tier2) Then
        'second tier
        Range("I5").Value = (tier1 * rTier1) + ((totalTransactions - tier1) * rTier2)
    ElseIf (totalTransactions > tier1 + tier2) And (totalTransactions <= tier1 + tier2 + tier3) Then
        'third tier
        Range("I5").Value = (tier1 * rTier1) + (tier2 * rTier2) + ((totalTransactions - (tier1 + tier2)) * rTier3)
    ElseIf (totalTransactions > tier1 + tier2 + tier3) And (totalTransaction <= tier1 + tier2 + tier3 + tier4) Then
        'fourth tier
        Range("I5").Value = (tier1 * rTier1) + (tier2 * rTier2) + (tier3 * rTier3) + ((totalTransactions - (tier1 + tier2 + tier3)) * rTier4)
    Else
        'exceeds fourth tier (5th tier)
        Range("I5").Value = (tier1 * rTier1) + (tier2 * rTier2) + (tier3 * rTier3) + (tier4 * rTier4) + ((totalTransactions - (tier1 + tier2 + tier3 + tier4)) * rTier5)
    End If
    
    'unit price
    Range("H5").Value = Range("I5").Value / Range("F5").Value

End Sub
The data this would run against would look like this:


UK Total
Country2 Total
Country3 Total
Country4 Total
Overall Total
Unit Price All
Fee Value All
Unit Price EU
Fee Value EU
Approvd Transactions
3100000
1500000
100000
1900000
6600000

<tbody>
</tbody>

Using this rate table:

Number of transactions
per transaction charge (p)
up to 2000000
0.015
up to 6000000
0.014
up 8000000
0.013
up to 10000000
0.012
10000000+
0.011

<tbody>
</tbody>


The sub above will happily work out the 'All' unit price and fee value.
The figures that I need to get into Unit Price EU and Fee Value EU are for the 'EU' total, which consists of the totals for country2, country3 and country4 added together.
So, the UK transactions are priced first, so that's 2000000 @ 0.015, 1100000 @ 0.014. Then come the EU transactions, which are going to be 2900000 @ 0.014 and 600000 @ 0.013.
Given that the transaction numbers will fluctuate, how can I programmatically calculate these EU Unit Price and EU Fee Value figures?
Since my human brain manages to concoct a set of instructions for doing this, I must be able to translate it into a set of instructions in VBA, but for the life of me I cannot see how to do it (staring at it for a great deal of time may have made me blind to the obvious).
If anyone can help me with this I should be eternally grateful. I'm sorry about the explanation here, please ask me for clarification on anything if required; I'm not convinced I've articulated it as well as I could.
Thanks
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Ok, I worked this out. Definitely an element of me being stupid, as it happens.
First I came up with a function for calculating the tiering with a number of transactions as a parameter, which basically goes like this

For the first tier:
Code:
(MIN(tierthreshold, MAX(0, totalTransactions)) * tierprice

Added to this, for each of the next tiers:
Code:
(MIN(tierthreshold, MAX(0, totalTransactions - prevTierThreshold)) * tierprice

And then added to, for the final tier, just the max bit
Code:
MAX(0, totalTransactions - prevThreshold) * tierprice

Then with that function I can give it first the total transactions, then just the uk transactions. The difference between them is the subset.
The subset itself is actually split into further groups, and the same principle applies, so I can give it the uk number, plus the number for the first group, and then remove that from the total, and so on.

Might help someone in the future. Tiered pricing is a pain.

oh and in vba you have to use Application.WorksheetFunction.Max or Min, just calling Max or Min in the code will get you ye olde "Sub or Function not defined" error.
 
Upvote 0

Forum statistics

Threads
1,215,140
Messages
6,123,269
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top