Trying to accurately calculate cumulative interest and principal payments made for loans? Microsoft Excel can help. Excel supplies two functions specifically for calculating cumulative interest and principal payments on a loan.
Excel supplies two functions specifically for calculating cumulative interest and principal payments on a loan: CUMIPMT, which calculates the cumulative interest payments on a bond or note, and CUMPRINC, which calculates the cumulate principal payments on a bond or note.
Some Background Info on the Cumulative Interest and Principal Add-in Functions
Both functions use the same set of arguments, including the interest rate, the loan term (or number of periods), the loan balance (or present value), the starting date and the ending date of the period for which you want to calculate the cumulative interest or principal payments, and a type-of-annuity switch to indicate whether the stream of payments occurs as an ordinary annuity or an annuity due.
The interest rate, loan term, loan balance, and type-of-annuity switch arguments work the same way for the CUMIPMT and CUMPRINC functions as they work for the standard financial functions.
NOTE If you have questions about how the interest rate, loan term, loan balance, or type-ofannuity switch arguments work, refer to the earlier section “Using the Payment Functions.”
The starting date and ending date arguments, as noted earlier, simply provide the starting and ending points for the period of time for which you want to calculate the cumulative interest or principal paid.
Common Errors Made When Using the Cumulative Interest and Principal Functions
Both the CUMIPMT and CUMPRINC functions return an error value in several predictable situations as well as one surprising situation:
1. If the interest rate or the loan term rate is less than or equal to zero.
2. If the starting date or ending date is nonsensical or if the starting date follows the ending date.
3. If the loan present value is less than or equal to zero. (Note that this means you don’t use the convention of specifying the loan present value as a negative number to show that it’s a cash outflow.)
Using the CUMIPMT Function
The CUMIPMT function calculates the cumulative interest paid on a loan between two dates you specify given the interest rate, loan term, loan present value, the starting date and ending date, and the type-of-annuity switch. It uses the following syntax:
CUMIPMT (rate, nper, pv, start period, end period, type)
Suppose, for example, that you want to calculate the cumulative interest paid on a $1,000,000, ten-year equipment loan that charges 9% interest and requires monthly payments arranged as an annuity due. Further suppose that you want to calculate the cumulative interest payments made over the first five years, or sixty months. To make this calculation, you use the following formula:
=CUMIPMT (.09/12,10*12,1000000,1,60,1)
The function returns the value –360094.
Using the CUMPRINC Function
The CUMPRINC function calculates the cumulative principal paid on a loan between two dates you specify given the interest rate, loan term, loan present value, the starting date and ending date, and the type-of-annuity switch. It uses the following syntax:
CUMPRINC (rate, nper, pv, start period, end period, type)
Suppose, for example, that you want to calculate the cumulative principal paid on a $1,000,000, ten-year equipment loan that charges 9% interest and requires monthly payments arranged as an annuity due. Further suppose that you want to calculate the cumulative principal payments made over the first five years, or sixty months. To make this calculation, you use the following formula:
=CUMPRINC (.09/12,10*12,1000000,1,60,1)
The function returns the value –394303.
Calculating Interest Rates With Microsoft Excel
Making interest rate calculations? Microsoft Excel can help. Excel's RATE, or interest rate, function lets you precisely calculate the implicit interest rate for a loan given the payment amount, loan amount, and number of payments.Mastering Accrued Interest Calculations with Microsoft Excel
Microsoft Excel is not just a spreadsheet program; it's a powerful tool for financial calculations, including the computation of accrued interest for various securities. Excel's built-in functions, ACCRINT and ACCRINTM, are specifically designed to simplify the process of calculating accrued interest for securities that pay periodic interest and those that pay at maturity, respectively. This article delves into the nuances of these functions, providing a detailed guide on how to use them effectively, along with common pitfalls to avoid.Using the Bond Duration Add-in Functions
Making bond duration calculations? Microsoft Excel can help. Excel provides two functions that help you with bond duration calculations.