Credit Card time to payoff and defered balance

G

Guest

How can I calculate the amount of money needed and the amount of time in
months to pay off a credit card, it I know the balance, the percentage rate
(compound interest) and the monthly minimum payment (2 to 3% of the unpaid
balance)?
 
G

Guest

Your question is not really about programming (the subject of this discussion
group), so this probably wasn't the best place to post.
Try working your way through this tutorial and it may help you understand
how to use Excel to do the sort of things you're asking about:
http://office.microsoft.com/training/training.aspx?AssetID=RC010233241033&pid=CR061831141033

The Excel functions you'll probably want to use are:
=NPER(<interest rate>,<payment>,<balance>)
That will give you the number of payments (months).
Note that the interest rate is per period (month), so will need to be the
annual rate/12.

=PV(<interest rate>,<number of payments>,<payment>)
Will return the total amount to be payed.
Do the NPER first so that you have the number of payments to enter.
Otherwise, nest the functions:
=PV(<interest rate>,NPER(<interest rate>,<payment>,<balance>),<payment>)
 

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