Login     Register

        Contact Us     Search

XLeratorDB/financial Documentation

SQL Server FV function


FV
 
Updated: 5 August 2010
Use FV to calculate the future value of an investment based on periodic, constant payments and a constant interest rate.
 
Syntax
SELECT [westclintech].[wct].[FV] (
   <@Rate, float,>
 ,<@Nper, float,>
 ,<@Pmt, float,>
 ,<@PV, float,>
 ,<@Pay_type, int,>)
Arguments
@Rate
the interest rate per period. @Rate is an expression of type float or of a type that can be implicitly converted to float.
@Nper
the total number of periods in the annuity to be calculated. @Nper is an expression of type float or of a type that can be implicitly converted to float.
@Pmt
the periodic payment amount . @Pmt is an expression of type float or of a type that can be implicitly converted to float.
@Pv
the present value of the annuity. @Pv is an expression of type float or of a type that can be implicitly converted to float.
@Pay_type
the number 0 or 1 and indicates when payments are due. @Pay_type is an expression of type int or of a type that can be implicitly converted to int. If @Pay_type is NULL it is assumed to be 0. 
Set @Pay_type equal to
If payments are due 
0
At the end of a period
1
At the beginning of a period
 
 
Return Type
float
Remarks
·         If type is equal to 0, FV is calculated as
FV = ((((1+@rate)^@nper-1)/@rate)*-@pmt)+(((1+@rate)^@nper)*-@pv)
·         If type is equal to 1, FV is calculated as
FV = ((((1+@rate)^(@nper+1)-(1+@rate)))/@rate*-@pmt)+(((1+@rate)^@nper)*-@pv)
·         It is important to be consistent with the units for @Rate and @Nper. For example if payments are to be paid monthly, then @Rate should be the monthly rate, which can be specified as the annual rate divided by 12. If payments are made quarterly, divide the annual rate by 4. If payments are made semi-annually, divide the annual rate by 2.
 
Example
 
SELECT wct.FV (.12
,12
,-1000
,-5000
,0)
Here is the result set
----------------------

43613.0132339597



Copyright 2008-2024 Westclintech LLC         Privacy Policy        Terms of Service