Calculating a mortgage payment

  • Thread starter Thread starter Erin Jenkins
  • Start date Start date
E

Erin Jenkins

When I use the function =PMT(D2/12,C2*12,A2,0,0) it calculates the righ
payment but it shows as a negative number. How do I make it show as
positive number?

d2=8.15%
c2=30 years
a2=$8170
 
I hate it when it's so simple. That's typical of me though over
complicating projects.

Thanks
 
Hi Erin!

It's a matter of taste often but I'd prefer to change my signs within
the function rather than just negate the entire answer. Simple cases
are no problem but life can get very difficult for inputs and
interpretation of outputs when you start dealing with more difficult
cases.

I'd prefer to get the sign to reflect the flow of the persona (either
borrower or lender)

This gives me for a lender:

If I have the A2 input as a positive:

=PMT(D2,C2*12,-A2,0,0)

If I have the input in A2 as a negative:

=PMT(D2,C2*12,A2,0,0)

This would indicate, correctly, a positive payment. Correctly? The
payment is coming towards me.

The reason for me wanting to be strict on the signage of flows is that
life can become more complicated with (for example) balloon mortgages
where there are terminal payments or even terminal receipts if part of
redemption is by another means.
--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top