Excel formula PV help needed

J

junk

I need help with a formula

using the PV function I need to creat a formula that calculates the amount
of money required today to be worth 142,500 in 10 years.
Interest rate is 6%
Payment per year is 1
No additional payments will be required



Thanks for the help
 
J

joeu2004

using the PV function I need to creat a formula that calculates the
amount of money required today to be worth 142,500 in 10 years.
Interest rate is 6%
Payment per year is 1
No additional payments will be required

=pv(6%, 10, 0, -142500)

I choose to negate the future value so that PV() returns a positive
number.
 
J

joeu2004

using the PV function I need to creat a formula that calculates the amount
of money required today to be worth 142,500 in 10 years.
Interest rate is 6%
Payment per year is 1
No additional payments will be required
=pv(6%, 10, 0, -142500)

I interpreted "payment per year is 1" to mean that the compounding
frequency is annual.

If "payment" means that you will be making annual contributions, then
you want the PMT() function, not the PV() function. Perhaps:

=pmt(6%, 10, 0, -142500)

Again, signs are chosen arbitrarily so that PMT() returns a positive
number.
 

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

Top