Reducing variable over time

MartinL

Well-known Member
Joined
Oct 16, 2008
Messages
1,141
Office Version
  1. 365
Platform
  1. Windows
I have a small table but I would like to know if there is a better way with a formula of doing this.

I have a start value and 60 periods (5 years in months)
at the end of the 60 months the initial value has reduced by 53%
so how do I calculate the end value

currently I am taking my start figure and multi by 53% to get the end figure
and then dividing that figure by 59 to get a monthly subtraction figure
by taking my initial number and subtracting this calculated number I get to the number I was looking for
but there must be a better way!?

example

M1 start figure = .37
after month 60 = 53%
value at month 60 = 0.37*53 = 0.1961
difference = (0.37 - 0.1961) / 59 = 0.002947
M2 = .37 - 0.002947 = 0.3670
M3 = 0.3670 - 0.002947 = 0.364106
:
M60 = 0.199047 - 0.002947 = 0.1961
 
Last edited:

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Re: HELP: Reducing variable over time

The change is 0.37 * (1 - 53%) / 60 (not 59) ~ -0.002898 per month.
 
Upvote 0
Reckon it's a matter of definition. If I take a 60-month loan, I start with an open balance at month 0 and make 60 payments, not 59.
 
Upvote 0
Reckon it's a matter of definition. If I take a 60-month loan, I start with an open balance at month 0 and make 60 payments, not 59.

That is a fair point, however in this instance that isn't what I'm doing. Point acknowledged though ;)

BTW Any ideas on a solution...?
 
Last edited:
Upvote 0
I don't understand the result you're trying to achieve. You know the month-over month change (which you assume is constant), and the question is .... what?
 
Upvote 0
I don't understand the result you're trying to achieve. You know the month-over month change (which you assume is constant), and the question is .... what?

Apologies, in my mind it is clear

If you look at the sheet again, in cell BK7 (highlighted in green) I have the sum of the reducing figures SUM(C7:BJ7)

To get this number I am currently creating the table with the reducing numbers over time
My question is can is do this programmatically using a formula - rather than building the table, or is this the only way I can achieve this answer?
 
Last edited:
Upvote 0
The sum of an arithmetic series a1 + a2 + ... + an is n/2 * (a1 + an)

So 60/2 * (100% + 53%) = 49.5

The starting value is 0.37, so

0.37 * 49.5 = 16.983
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,871
Members
449,055
Latest member
excelhelp12345

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