I have a formula in excel which works out a compound interest
X = P*(1+R)^N
or as excel formula
=B3*(1+B4)^B5
Where
P = starting amount, eg 1000.00
R = rate, eg 0.12
N = number of iterations, eg 20.00
In the example above the answer is 9646.29 rounded to 2dp
What I need is to introduce a rounding of 2 decimal places for each iteration. The final answer I need for the above example is 9646.31 to 2dp
Eg A100 = 1000
A101 =A100*Round(A100*0.12,2)
.
.
A120 =A119*Round(A119*0.12,2) = 9646.31
Can this be done with excel formula without using VBA?
Many thanks,
Os
X = P*(1+R)^N
or as excel formula
=B3*(1+B4)^B5
Where
P = starting amount, eg 1000.00
R = rate, eg 0.12
N = number of iterations, eg 20.00
In the example above the answer is 9646.29 rounded to 2dp
What I need is to introduce a rounding of 2 decimal places for each iteration. The final answer I need for the above example is 9646.31 to 2dp
Eg A100 = 1000
A101 =A100*Round(A100*0.12,2)
.
.
A120 =A119*Round(A119*0.12,2) = 9646.31
Can this be done with excel formula without using VBA?
Many thanks,
Os