Calculating Mixed Percentage and Flat Figures within one Cell - Please can someone help?

phillexcel

New Member
Joined
Aug 5, 2014
Messages
31
Value in Column N

If the value in column N equals the below I need the calculated fee to appear in Column O

These are tiered rates, the first 2 bandings are flat rates, the rest are percentage based.

Value and Fee
£1-£50,000 = £1250
£50,001 - £100,000 = £1500
£100,001 - £125,000 = 1.75%
£125,001 - £150,000 = 1.5%
£150,001 - £200,000 = 1.25%
£200,001 - £250,000 = 0.75%
£250,001 - £300,000 = 0.50%
£300,001 - £400,000 = 0.25%
£400,001 + = 1%

I’m struggling to get this formula, the formula I’ve got in Column O2 at the moment is:

=N2*LOOKUP(N2,{100001,125001,150001,200001,250001,300001,400001},{0.0175,0.015,0.0125,0.0075,0.005,0.0025,0.01})

This sorts the problem with percentage fees but I can’t figure out how to get those flat fees for the lower values into the formula, please can someone help? :eek:
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Would this satisfy your requirements? It's easier than LOOKUP, I think. Just copy E2 down as far as necessary.

Note that I think you meant 0.10% for the 400,000+ category. Also, notice what happens with a zero - is that acceptable?

ABCDE
1valuefeequeriestotal fee
2£1.00£1,250.00£0.00#N/A
3£50,001.00£1,500.00£1.00£1,250
4£100,001.001.75%£50,000.00£1,250
5£125,001.001.50%£50,001.00£1,500
6£150,001.001.25%£125,000.00£2,188
7£200,001.000.75%£125,001.00£1,875
8£250,001.000.50%£500,000.00£500
9£300,001.000.25%
10£400,001.000.10%

<colgroup><col style="width: 25pxpx"><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet18

Worksheet Formulas
CellFormula
E2=IF(VLOOKUP(D2,$A$2:$B$10,2)>1,VLOOKUP(D2,$A$2:$B$10,2),VLOOKUP(D2,$A$2:$B$10,2)*D2)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
Would this satisfy your requirements? It's easier than LOOKUP, I think. Just copy E2 down as far as necessary.

Note that I think you meant 0.10% for the 400,000+ category. Also, notice what happens with a zero - is that acceptable?

ABCDE
1valuefeequeriestotal fee
2£1.00£1,250.00£0.00#N/A
3£50,001.00£1,500.00£1.00£1,250
4£100,001.001.75%£50,000.00£1,250
5£125,001.001.50%£50,001.00£1,500
6£150,001.001.25%£125,000.00£2,188
7£200,001.000.75%£125,001.00£1,875
8£250,001.000.50%£500,000.00£500
9£300,001.000.25%
10£400,001.000.10%

<tbody>
</tbody>
Sheet18

Worksheet Formulas
CellFormula
E2=IF(VLOOKUP(D2,$A$2:$B$10,2)>1,VLOOKUP(D2,$A$2:$B$10,2),VLOOKUP(D2,$A$2:$B$10,2)*D2)

<tbody>
</tbody>

<tbody>
</tbody>


Thanks so much for the help, the £400,001 + section is 1% not 0.10%. I've managed to figure out the following formula that solves the problem for me, I'd prefer to have a table though as if any of the commission rates change I wouldn't need to amend the formula.

The formula that works for me so far is.....

=IF(N3<50001,1250,IF(N3<100001,1500,IF(N3<125001,N3*1.75%,IF(N3<150001,N3*1.5%,IF(N3<200001,N3*1.25%,IF(N3<250001,N3*0.75%,IF(N3<300001,N3*0.5%,IF(N3<400001,N3*0.25%,N3*1%))))))))
 
Upvote 0

Forum statistics

Threads
1,216,082
Messages
6,128,700
Members
449,464
Latest member
againofsoul

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