Create a dollar value from a range of values that are capped

Scottc7120

New Member
Joined
Oct 1, 2020
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I am wanting to create a formula that calculates a fee dependent on the value of the sale. Where Cell A1 would be the value of the sale

0 - 29,999.99 Capped $500
30,000 - 49,999.99 2.5% Capped $1,000
50,000 - 99,999.99 1.9% Capped $1,500
100,000 - 149,999.99 1.5% Capped $2,000
150,000 - 249,999.99 1.5% Capped $2,500
250,000+ Capped $3,000
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Welcome to the MrExcel board!

There is no % given for the first or last range so I have assumed they are fixed fees rather than a 'cap' as such. See if this is what you want. If not, further explanation and examples of sales and expected fees please.

20 10 01.xlsm
ABCDEF
1SaleFeeAmountFee %Cap
220005000500
31050001575300002.50%1000
41480002000500001.90%1500
5300000030001000001.50%2000
64500010001500001.50%2500
715100022652500003000
81500
952222992.218
Fee
Cell Formulas
RangeFormula
B2:B9B2=IF(VLOOKUP(A2,D$2:E$7,2)=0,VLOOKUP(A2,D$2:F$7,3),MIN(A2*VLOOKUP(A2,D$2:E$7,2),VLOOKUP(A2,D$2:F$7,3)))
 
Upvote 0
You're welcome. Thanks for the follow-up. :)
 
Upvote 0

Forum statistics

Threads
1,214,944
Messages
6,122,392
Members
449,081
Latest member
JAMES KECULAH

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