Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default PMT function and 1st payment partway through a period

I am using the PMT function to calculate mortgage payments. payments are at
the end of each month and there will be 240 payments. how should i account
for the fact that the mortgage may start partway through the first month?

thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 905
Default PMT function and 1st payment partway through a period

"Robbie G" wrote:
I am using the PMT function to calculate mortgage payments.
payments are at the end of each month and there will be 240
payments. how should i account for the fact that the mortgage
may start partway through the first month?


I cannot think of a way to use the PMT function for this. And my
mathematical formula is complicated. See below.

Alternatively, you can use Solver or Goal Seek.

Suppose B1 is the date of the loan, B2 is the loan amount, B3 is the annual
interest rate, B4 is the number of monthly payments, and B5 is the date of
the first payment (less than month after B1).

Assume that B6 will contain the monthly payment. And B7 contains the
following formula, assuming a US loan or similar:

=FV(B3/12, B4-1, B6, -B2*(1+(B5-B1)*B3/365) + B6)

With Solver or Goal Seek, set the target cell to B7, the target value to 0,
and the changing cell to B6. Execute Solver or Goal Seek.

The result in B6 is the "exact" payment.

Instead of using Solver or Goal Seek, you can use the following formula in
B6:

=B2*(1+(B5-B1)*B3/365) * (1+B3/12)^(B4-1)
/ ( ((1+B3/12)^(B4-1)-1)*12/B3 + (1+B3/12)^(B4-1) )

That is the Excel formulation of the following rewritten to solve for PMT:

0 = (PV*(1+(d2-d1)*i/365) - PMT) * (1+i/12)^(n-1)
- PMT*((1+i/12)^(n-1) - 1) / (i/12)

for PV0 and PMT0.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 418
Default PMT function and 1st payment partway through a period

"Robbie G" wrote:
I am using the PMT function to calculate mortgage payments.
payments are at the end of each month and there will be 240
payments. how should i account for the fact that the mortgage
may start partway through the first month?


I cannot think of a way to use the PMT function for this. And my
mathematical formula is complicated. See below.

Alternatively, you can use Solver or Goal Seek.

Suppose B1 is the date of the loan, B2 is the loan amount, B3 is the annual
interest rate, B4 is the number of monthly payments, and B5 is the date of
the first payment (less than month after B1).

Assume that B6 will contain the monthly payment. And B7 contains the
following formula, assuming a US loan or similar:

=FV(B3/12, B4-1, B6, -B2*(1+(B5-B1)*B3/365) + B6)

With Solver or Goal Seek, set the target cell to B7, the target value to 0,
and the changing cell to B6. Execute Solver or Goal Seek.

The result in B6 is the "exact" payment.

Instead of using Solver or Goal Seek, you can use the following formula in
B6:

=B2*(1+(B5-B1)*B3/365) * (1+B3/12)^(B4-1)
/ ( ((1+B3/12)^(B4-1)-1)*12/B3 + (1+B3/12)^(B4-1) )

That is the Excel formulation of the following rewritten to solve for PMT:

0 = (PV*(1+(d2-d1)*i/365) - PMT) * (1+i/12)^(n-1)
- PMT*((1+i/12)^(n-1) - 1) / (i/12)

for PV0 and PMT0.


[Duplicate posting because it appears that postings to the MSNews server are
not copied to the MS Discussion Groups server sometimes.]
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 905
Default PMT function and 1st payment partway through a period

PS....

I wrote:
=FV(B3/12, B4-1, B6, -B2*(1+(B5-B1)*B3/365) + B6)
[....]
=B2*(1+(B5-B1)*B3/365) * (1+B3/12)^(B4-1)
/ ( ((1+B3/12)^(B4-1)-1)*12/B3 + (1+B3/12)^(B4-1) )
[....]
0 = (PV*(1+(d2-d1)*i/365) - PMT) * (1+i/12)^(n-1)
- PMT*((1+i/12)^(n-1) - 1) / (i/12)


A lender might use a denominator of 360 instead of 365 for a fractional
monthly payment, following the rules for computing the APR according to
Appendix J of the US Truth In Lending Act (Reg Z).


----- original message -----

" wrote:

"Robbie G" wrote:
I am using the PMT function to calculate mortgage payments.
payments are at the end of each month and there will be 240
payments. how should i account for the fact that the mortgage
may start partway through the first month?


I cannot think of a way to use the PMT function for this. And my
mathematical formula is complicated. See below.

Alternatively, you can use Solver or Goal Seek.

Suppose B1 is the date of the loan, B2 is the loan amount, B3 is the annual
interest rate, B4 is the number of monthly payments, and B5 is the date of
the first payment (less than month after B1).

Assume that B6 will contain the monthly payment. And B7 contains the
following formula, assuming a US loan or similar:

=FV(B3/12, B4-1, B6, -B2*(1+(B5-B1)*B3/365) + B6)

With Solver or Goal Seek, set the target cell to B7, the target value to 0,
and the changing cell to B6. Execute Solver or Goal Seek.

The result in B6 is the "exact" payment.

Instead of using Solver or Goal Seek, you can use the following formula in
B6:

=B2*(1+(B5-B1)*B3/365) * (1+B3/12)^(B4-1)
/ ( ((1+B3/12)^(B4-1)-1)*12/B3 + (1+B3/12)^(B4-1) )

That is the Excel formulation of the following rewritten to solve for PMT:

0 = (PV*(1+(d2-d1)*i/365) - PMT) * (1+i/12)^(n-1)
- PMT*((1+i/12)^(n-1) - 1) / (i/12)

for PV0 and PMT0.


[Duplicate posting because it appears that postings to the MSNews server are
not copied to the MS Discussion Groups server sometimes.]

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Starting payment when increase rate is known & total payment is kn Shailendra Harri Excel Worksheet Functions 12 September 22nd 07 09:04 PM
change the payment period of amortization schedule gcip Excel Worksheet Functions 2 March 14th 07 03:01 AM
Question on Payment function. Don New Users to Excel 4 August 6th 06 01:32 AM
need a function to calculate a mortgage payment bpeltzer Excel Worksheet Functions 0 November 7th 05 12:09 AM
Payment terms function Tina Excel Worksheet Functions 2 December 2nd 04 02:03 PM


All times are GMT +1. The time now is 05:26 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"