This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com

Home

 
4D v19
PV

PV 


 

PV ( i , n , m {, f} )  
Parameter Type   Description
Number in The interest rate for a period
Number in The number of periods
Number in For compound interest: the monthly payment at the end of each period (use a negative value).
For single interest: pass an empty parameter (see example)
Number in For single interest rate: the final value at the end of a period (use a negative value)

The PV function calculates:

  • the current value of a sum using the compound interest, or
  • the current value of a sum using single interest rates.

To calculate the current value of a sum using the compound interest, pass the m parameter and omit the f parameter. Here is the formula for this calculation:

To calculate the current value of a sum using single interest rates, pass the f parameter and pass an empty parameter (,,) for the m placeholder. Here is the formula for this calculation:

Compound interest: you have a loan with an 12% annual interest rate (thus 1% per month) over 5 months with a monthly payment of €1,000.

PV(1%,5,-1000) //4853,4312393251

Single interest rates: you have a loan with an 12% annual interest rate (thus 1% per month) over 5 months with a monthly payment of €1,000.

Note: Pay attention to the double ",," inside the syntax.

PV(1%,5,,-5*1000) //4757,328438033744



See also 

FV

 
PROPERTIES 

Product: 4D
Theme: 4D View Pro Formulas

 
PAGE CONTENTS 
 
HISTORY 

 
ARTICLE USAGE

4D View Pro Reference ( 4D v19)