Costings Formula

Adcas2018

New Member
Joined
Apr 26, 2018
Messages
1
Hi,

New to the forum and hoping someone can help what is hopefully straightforward to those in the know!!

I'm looking at getting a spreadsheet together to provide an overall percentage cost of a product that has variable pricing depending on the amount paid....

eg: upto £30000 charges 0.40%, the next £200,000 the charges reduce to 0.30% and the next £200,000 the charges reduce to 0.25%

So a figure of £100,000 would cost 0.40% for £30000 with the remaining £70000 at 0.30% and produce an overall charge of X%.

Ideally looking at having a field where a £ figure can be entered with a field next to it that returns the charge,

Is there a formula that I can use to do this?

Hope you can help!

Thanks

Matt
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Welcome to the board.

If your expected result for that sample is 133000, then perhaps this:

=(MIN(A2,30000)*1.4)+(MAX(0,A2-30000)*1.3)+(MAX(0,A2-230000)*1.25)

If you just want to see the additional charge of 33000, then this:

=(MIN(A2,30000)*0.4)+(MAX(0,A2-30000)*0.3)+(MAX(0,A2-230000)*0.25)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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