Compound Interest

R

RickS

I see the formula for calculating annually compounded interest. Is there a
function formula for daily compounding of interest?

RickS
 
T

Tim879

Try using the rate function and setting the nper = 360 or 365
(depending on how many days you want to use).
 
R

RickS

Thanks Tim, are you suggesting I do this with the NPER or PV formulas? But
where do I put the 360 basis, in the formula as described in Excel Help?
Which component is the basis? NPER(rate, pmt, pv, fv, type)


RickS
 
B

Bernie Deitrick

Rick

You need to use the annual rate divided by the number of periods. For example, with a 5% annual
rate

Annual:
=FV(0.05,1,0,1000,1)

Monthly:
=FV(0.05/12,12,0,1000,1)

Daily:
=FV(0.05/365,365,0,1000,1)

All the financial functions work the same general way.

HTH,
Bernie
MS Excel MVP
 
B

Brad

There are some instances were (1.05^(1/365)-1) is the correct interest rate
to be used - it all depends if you are dealing wth nominal or effective
interest rates.

Granted that .05/365 is used in more cases than what I posted - but one
needs to know which rate to use...
 

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