Formula to increase percentage in smooth ramp

theloudbloke

New Member
Joined
Nov 27, 2020
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi All
This is more a math question than Excel.

What I would like to do is, gradually increase a percentage applied to a total between 2 values. For example, if the total was 500 I would like to calculate 0.5%, but as the total increased to 1000, I would like the percentage to increase to 1%, in a smooth ramp.
I'm sure it's not difficult, just beyond my math capabilities.
Thanks
T
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
I think you want if your data lower than or equal 500 , calculate 0.5% And if more than 500 and lower than 1000 Calculate 1%.
then formula is (if your first data is in A2):
Excel Formula:
=IFS(A2<=500,0.05*A2,AND(A2>500, A2<=1000),0.1*A2)

and If you want to Percentage increase by value from 500 to 1000 , from 0.5% to 1% Use this:
Excel Formula:
=IFS(A2<=500,0.05*A2,AND(A2>500, A2<=1000),A2^2 * 0.0001)
 
Upvote 0
Thank you very much.

I'll get it into a spreadsheet and have a play around with it.

Cheers.
 
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,008
Members
448,935
Latest member
ijat

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