This Tips and Tricks is in continuation of Tips & Tricks 84 – Financial Function – Calculate EMI. Now the EMI for a month = Interest for that month and Principal for that month. IPMT is used to calculate the interest portion of your EMI.
Excel defines IPMT as "Returns the interest payment for a given period for an investment based on periodic, constant payments and a constant interest rate"
The syntax of IPMT is IPMT(rate, per, nper, pv, [fv], [type]).
rate: You rate of interest
per: Period for which you want to calculate Interest
nper: No. of payments. Your nper and rate should be on the same scale. i.e if you are planning to pay up monthly, the rate in your formula should be monthly only. Generally, interest rate is specified yearly i.e. 10.5% per year. This you should divide by 12 to arrive at monthly rate. Hence, if you wanted 3 years loan, it means nper would 3×12=36 months.
If it is quarterly, rate = 10.5%/4 = 2.625% and nper would be 3×4 = 12
If it is annual, rate = 10.5% and nper = 3
pv: Your loan amount. You will need to put negative value of this in your formula. If you don't put negative value, your EMI would be in negative but answer would be same though with negative sign.
+ve / -ve IPMT requires some explanation though you may choose to ignore. It depends upon your cashflow. If you are taking a loan, hence cash in, hence pv is +ve. But every month, you will have to pay up something, hence cash out. Hence, IPMT is -ve. If you are investing, hence cash out. Hence pv is -ve. But every month, you will be receiving something, hence cash in. Hence, IPMT is +ve.
Now what is +ve or -ve is simply your preference. I recommend you should not worry about this.
fv: Your remaining value after you finish your installment. Generally, it is 0 as any lender will like to recover its money fill. (Default is 0)
type: 0 – At the end of the period, 1 – At the beginning of the period (Default is 0)
Also note, fv and type are optional and may not be required in your formula.
The formula used in the below picture is =IPMT(B1/12,B2,B3,-B4,B5,B6)
Also, since Interest will vary every month, hence it makes sense to calculate it for each month. Columns H & I carry interest for each month.
Bonus Tip = If you use ABS function, then there would be no need to put negative value of PV. Hence, formula in this case would be =ABS(IPMT(B1/12,B2,B3,B4,B5,B6))
The below EMI Calculator can be download from here Interest Payment Calculator