In Google Sheets, the ISPMT function is a financial tool used to calculate the interest expense for a specific period of an investment, assuming a constant interest rate. This allows users to assess the cost of interest over time, which is particularly useful in financial analysis and investment management.
Syntax
ISPMT(rate, period, nper, pv)
- rate: The interest rate for the investment, expressed as a decimal.
- period: The specific period for which the interest is calculated.
- nper: The total number of payment periods in the investment.
- pv: The present value or the initial amount of the investment.
Example #1
ISPMT(0.05, 1, 5, 1000)
This function calculates the interest for the first period of a $1,000 investment over 5 periods at a 5% interest rate. The result is -$50, indicating a cost of interest to the investor.
Example #2
ISPMT(0.04, 3, 10, 5000)
This function computes the interest for the third period of a $5,000 investment over 10 periods at a 4% interest rate. The result is -$200, which signifies an expense in interest for that period.
Example #3
ISPMT(0.03, 2, 6, 3000)
In this example, the function calculates the interest for the second period of a $3,000 investment over 6 periods at a 3% interest rate. The outcome is -$90, reflecting the interest cost to the investor for that time frame.
Error handling
- NUM!: This error occurs if the period is less than 1 or greater than the nper. Ensure the period is valid.
- VALUE!: This error indicates that one of the inputs is not numeric. Check that all parameters are correctly formatted as numbers.
- DIV/0!: This error shows up when the nper is 0, signifying no payment periods available. Reassess the inputs for validity.