Compound interest Formula
-
Hi I’m trying to implement a compound interest with monthly contributions formula.
However the result of the formula keeps showing a wrong result while when I’m doing in my excel everything is working fine.
Below the formula used:
P=Initial Investment; PMT=monthly contribution; r=interest rate; n=12; t=years
[ P(1+r/n)^(nt) ] + [ PMT × (((1 + r/n)^(nt) – 1) / (r/n)) ]I implemented it that way in my form:
(fieldname14*(1+(fieldname16/12))^(12*fieldname17))+(fieldname15*(((1+(fieldname16/12)^(12*fieldname17)-1)/(fieldname16/12))))Could you please help me understand why I don’t get the right amount which is €23,504?
The page I need help with: [log in to see the link]
The topic ‘Compound interest Formula’ is closed to new replies.