PMT with different compounding and payment periods

jamesblack90

New Member
Joined
Jun 9, 2015
Messages
44
Hi guys,

Having the following issue where I want to be able to calculate the monthly/fortnightly/weekly repayments where interest is calculated daily but compounded monthly. I am using the following so far:

Code:
=ABS(PMT(B21/12,IF(B23="Weekly",B19*52,IF(B23="Fortnightly",B19*26,IF(B23="Monthly",B19*12,""))),B17,0))
Where:
B21 = %pa
B19 = # years

The Monthly payment calculates perfectly, but the problem is if I change B23 to Weekly or Fortnightly, the repayments actually get higher, and I need interest to continue to compound monthly, but take into account the reduction of principal at weekly or fortnightly intervals... Any ideas?
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Don't worry. Worked it out.

Code:
=ABS(PMT(B26/12,B22*12,B20,0))*IF(B28="Weekly",12/52,IF(B28="Fortnightly",12/26,IF(B28="Monthly",1,1)))
 
Upvote 0

Forum statistics

Threads
1,215,516
Messages
6,125,285
Members
449,218
Latest member
Excel Master

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top