Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- CA-Clipper Tools . Books 1-3 - <b>pv()</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 PV()
 Computes the cash present value after interest charges
------------------------------------------------------------------------------
 Syntax

     PV(<nPayments>,<nInterestRate>,<nNumberPayments>)
        --> nCapital

 Arguments

     <nPayment>  Designates the amount of the scheduled periodic payment.

     <nInterestRate>  Designates the periodic interest rate.  1
     corresponds to 100%.

     <nNumberPayments>  Designates the number of anticipated payment
     periods.

 Returns

     PV() returns the cash value of an interest yield.

 Description

     PRESENT VALUE
     The function computes the cash value of regular equal payments
     <nNumberPayments> at an <nInterestRate> interest rate over
     <nNumberPayments> payment periods.

 Examples

     .  How high can a loan be if you pay $175 for 24 months, at an
        annual fixed interest rate of 9.5%?  Since payments are monthly, the
        annual percentage rate is divided by 12:

        nRate  :=  0.095/12
        ? PV(175, nRate, 24)     // $3811.43

     .  Annual payments over 2 years at 9.5% per annum:

        ? PV(175, 0.095, 2)      // $305.77


See Also: PAYMENT() RATE() PERIODS() FV()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson