Incremental decreases

sergiurotaru

New Member
Joined
Oct 27, 2017
Messages
1
Hello guys

Please help me with this question.

10000 10%
12500
15000
17500
20000
22500
25000 7%

Above I want to distribute percentages incremental, to decrease between 10%-7%. There is one formula for this.

Thanks
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
Welcome to the Board!

You can use linear interpolation to do this. See: https://en.wikipedia.org/wiki/Linear_interpolation

So, if your data above was in cells A1:B7, so you are looking to populate cells B2:B6, place this formula in B2 and copy all the way down to B6:
Code:
=B$1+(A2-A$1)*(B$7-B$1)/(A$7-A$1)
 
Upvote 0

Forum statistics

Threads
1,224,822
Messages
6,181,165
Members
453,021
Latest member
Justyna P

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