Jump to content

Savings calculation? Help?


jim lee

This topic is 6522 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hello everyone,

I'm trying to model a savings account. Two tables, Accounts and their related transactions. The sum of the transaction amounts give the account balance. Simple enough.. But how to calculate a compounded interest?

My thought was to add an interest transaction each time something changed either the interest rate or the addition of a transaction. But I can't find a formula for calculating compunded interest.

I have :)

Interest rate

The startting balance

The amount of time

All the functions I see have you putting in payments. This is just one lump sum over time.

Many thanks in advance!

-jim lee

Link to comment
Share on other sites

There are two ways to compound interest: periodically and continuously.

The future value of a deposit with periodically compounded interest is:

principal * ( 1 + rate )^nper

where rate is the interest rate PER COMPOUNDING PERIOD, and nper is the number of compounding periods.

The future value of a deposit with continuously compounded interest is:

principal * Exp ( rate * nper )

where rate is the interest rate per any arbitrary period, and nper is the number of those periods.

Link to comment
Share on other sites

This topic is 6522 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.