owen_legend
New member
- Joined
- Aug 28, 2018
- Messages
- 4
I'm trying to figure out how (if possible) to work backwards on reducing balance depreciation - For reference, I'm an accountant and not a maths expert:
So i've formed the equation to calculate 1 months depreciation charge from a net book value:
Where
X = The next months charge
N = Current Net Book Value
r = Annual % rate as a decimal
What I want to do is to figure out how to get back to the previous months Net Book Value from this.
To get the next Net Book Value, the formula is:
Where
N2 = Future Net Book Value
N = Current Net Book Value
r = Annual % rate as a decimal
Just in case my description of my problem doesn't make sense - I have provided the following example:
Current Net Book Value = £14237.51
Applying the first formula described in my post where the annual % rate is 15%
So the future Net Book Value will be £14045.99 - then the next one will be £13857.04
I want to calculate the Net Book Value before £14237.51
Thanks in advance!
So i've formed the equation to calculate 1 months depreciation charge from a net book value:
Code:
X = N * (1-((1-r)^(1/12)))
Where
X = The next months charge
N = Current Net Book Value
r = Annual % rate as a decimal
What I want to do is to figure out how to get back to the previous months Net Book Value from this.
To get the next Net Book Value, the formula is:
Code:
N2 = N-(N * (1-((1-r)^(1/12))))
Where
N2 = Future Net Book Value
N = Current Net Book Value
r = Annual % rate as a decimal
Just in case my description of my problem doesn't make sense - I have provided the following example:
Current Net Book Value = £14237.51
Applying the first formula described in my post where the annual % rate is 15%
Code:
X = 14237.51 * (1-((1-0.15)^(1/12))) = 191.52
So the future Net Book Value will be £14045.99 - then the next one will be £13857.04
I want to calculate the Net Book Value before £14237.51
Thanks in advance!