how do you calculate compound interest with multiple payments?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a series of unequal payments over unequal time periods. I would like
to calculate the compounded interest of these payments. Is there an easier
way than setting this up in a table?
 
have a look in the help index for financial functions or XIRR
 
To answer your second question, you need to set up a table with each payment and
the date made. Then feed this table to XIRR.
 
Fred said:
To answer your second question, you need to set up a table with each payment and
the date made. Then feed this table to XIRR.

While I prefer to do it that way, too, the following paradigm works
just fine:

XIRR({-10000,-1000,-2000,30000},
{"1/1/2000","3/4/2001","5/6/2003","10/4/2006"})
 
You're correct. But you still have to list each payment and each date. I think
the OP was hoping you could specify a count, as in 10 payments of $x, followed
by 14 payments of $y, etc. (as some HP calculators support).

But XIRR isn't that smart.
 
Fred said:
You're correct. But you still have to list each payment and each date. I think
the OP was hoping you could specify a count, as in 10 payments of $x, followed
by 14 payments of $y, etc. (as some HP calculators support).
But XIRR isn't that smart.

I agree: that is a nice feature that I miss (since I use an HP 12C
extensively). But that does not sound like "a series of unequal
payments over unequal time periods", which the OP wrote. I suspect
that the OP was referring to a PV table where she would derive the
discount rate using a binary search. I sometimes resort to that
myself, especiallly when I get tired of trying to find a "guess" that
helps the brain-dead Excel algorithms. But that is neither here nor
there.
 

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

Back
Top