Logo

ODDFPV

Updated 2023-10-06 21:45:46.617000

Syntax

SELECT [wct].[ODDFPV](
  <@Rate, float,>
 ,<@Nper, int,>
 ,<@Pmt, float,>
 ,<@FV, float,>
 ,<@FirstPeriod, float,>)

Description

Use the scalar function ODDPV to calculate the present value of an annuity where the first period is either longer or shorter than the other periods.

Arguments

@Pmt

the periodic annuity payment. @Pmt is an expression of type float or of a type that can be implicitly converted to float.

@FirstPeriod

the length of the first period. @FirstPeriod is an expression of type float or of a type that can be implicitly converted to float.

@Rate

the periodic interest rate. @Rate is an expression of type float or of a type that can be implicitly converted to float.

@FV

the future value as at the end of the annuity. @FV is an expression of type float or of a type that can be implicitly converted to float.

@Nper

the number of annuity payments. @Nper is an expression of type int or of a type that can be implicitly converted to int.

Return Type

float

Remarks

If @Rate <= -1 then NULL is returned.

If @Nper < 1 then NULL is returned.

If @FirstPeriod <= 0 then NULL is returned.

If @Nper is NULL then @Nper = 0.

If @Pmt is NULL then @Pmt = 0.

If @Rate is NULL then @Rate = 0.

If @FV is NULL then @FV = 0.

If @FirstPeriod is NULL then @FirstPeriod = 1.

ODDFPV uses the same conventions for the sign of the inputs and the results as Excel and Google spreadsheets; generally @Pmt and @FV should have then same sign and the ODDFPV result will have the opposite sign.

Examples

Calculate the present value of an annuity assuming a periodic rate of 0.5%, with 36 periodic payments. The periodic payment is 351.31 and there is no cash value at the end of the annuity. The first period is 1 and 5/6th longer than the other periods.

SELECT wct.ODDFPV(   .005,         --@Rate

                     36,           --@Nper

                     351.31,       --@Pmt

                     0,            --@FV

                     1 + 5 / 6e+00 --@FirstPeriod

                 ) as PV;

This produces the following result.

{"columns":[{"field":"PV","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"PV":"-11500.2374552516"}]}

Calculate the present value of an annuity assuming a periodic rate of 0.5%, with 180 periodic payments of 1932.46. There is a 50,000 cash value at the end of the annuity. The first period is one-half as long as the other periods.

SELECT wct.ODDFPV(   .005,    --@Rate

                     180,     --@Nper

                     1932.46, --@Pmt

                     50000,   --@FV

                     0.5      --@FirstPeriod

                 ) as PV;

This produces the following result.

{"columns":[{"field":"PV","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"PV":"-249999.312123788"}]}

Calculate the present value of an automobile lease with a term of 3 years and an annual interest rate of 25%. Then weekly payment is 85.51 and the residual value at the end of the lease is 3,500. The first payment is due 2014-11-25.

SELECT wct.ODDFPV(   .25 * 7 / 365e+00,                              --@Rate

                     156,                                            --@Nper

                     85.51,                                          --@PV

                     3500,                                           --@FV

                     DATEDIFF(d, '2014-11-13', '2014-11-25') / 7e+00 

                               --@FirstPeriod

                 ) as PV;

This produces the following result.

{"columns":[{"field":"PV","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"PV":"-11000.0374500534"}]}

See Also

CUMODDFIPMT - Cumulative interest on the periodic annuity payments between a start period and an end period

CUMODDFPPMT - Cumulative principal on the periodic annuity payments between a start period and an end period

ODDFIPMT - Interest portion of a periodic payment for an annuity with an odd first period

ODDFPMT - Periodic payment for an annuity with an odd first period

ODDFPMTSCHED - Amortization schedule for an annuity with odd first period

ODDFPPMT - Principal portion of a periodic payment for an annuity with an odd first period

ODDFRATE - Rate of an annuity with an odd first period given number of periods, periodic payment, present value, and future value.

PV - Present value of an annuity