Compound Interest

G

Guest

I need to calculate how much interest would be earned betwen two dates using
daily compounding. OR the future value of a current amount using daily
compounding method.

Can't find a function that seems to work
 
R

Ron Rosenfeld

I need to calculate how much interest would be earned betwen two dates using
daily compounding. OR the future value of a current amount using daily
compounding method.

Can't find a function that seems to work

The FV function is blind to the length of a period. So, assuming you have an
annual interest rate, just divide that by 365 or 360 to obtain the daily rate,
and use the number days between the two dates for the number of periods.

To get the amount of interest, just subtract the PV (initial investment).

Or, for just a plain formula,

=PV*(1+annual_rate/365)^(number_of_days) - PV


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top