NPV_q
Updated 2024-02-23 22:00:44.607000
Syntax
SELECT [westclintech].[wct].[NPV_q] (
<@Rate, float,>
,<@Cashflows_RangeQuery, nvarchar(4000),>)
Description
Use the scalar function NPV_q to calculate the net present value of an investment based on a series of periodic cash flows and a discount rate using dynamic SQL.
If n is the number of cash flows in the list of values, the formula for NPV is:
NPV=\sum_{i=1}^n\frac{{values}_i}{\left(1+rate\right)^{i}
Whereas the formula for ENPV is:
ENPV=\sum_{i=0}^{n-1}\frac{{values}_i}{\left(1+rate\right)^{i}
WhereN = Number of cashflowsValues = Cashflow amountsRate = Discount rate
Arguments
@Cashflows_RangeQuery
a select statement, as text, which specifies the cash flow values to be used in the net present value calculation.
@Rate
The rate to be used for discounting the cash flows in calculating the net present value. @Rate is an expression of type float or of a type that can be implicitly converted to float.
Return Type
float
Remarks
For the results to be meaningful, the cash flows should be equally spaced with respect to time and occur at the end of each period.
Order matters, so make sure that your SELECT statement uses a meaningful index or specify the order of the cash flows explicitly in the WHERE clause.
NPV_q is related to the IRR function in that the IRR is the value which when used to discount the cash flows returns an NPV of zero.
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.
Funds that are paid should be represented with negative numbers. Funds that are received should be represented as positive numbers.
NPV_q returns results consistent with the EXCEL NPV function, which assumes that the first cash flow is discounted at the discount rate; in most financial texts the first cash flow is not discounted. Use the ENPV_Q function for that treatment. The ENPV_q result divided by the NPV result should be equal to 1 plus the discount rate
Examples
Create a table to store cash flow projections, by year, for a variety of projects:
CREATE TABLE [dbo].[cf1]
(
[proj_no] [float] NOT NULL,
[period] [float] NOT NULL,
[cf_amt] [float] NOT NULL,
CONSTRAINT [PK_cf1]
PRIMARY KEY CLUSTERED (
[proj_no] ASC,
[period] ASC
)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON,
ALLOW_PAGE_LOCKS = ON
) ON [PRIMARY]
) ON [PRIMARY];
Insert the data for 3 projects into the table.
INSERT INTO cf1
VALUES
(1, 1, -25000);
INSERT INTO cf1
VALUES
(1, 2, 5000);
INSERT INTO cf1
VALUES
(1, 3, 10000);
INSERT INTO cf1
VALUES
(1, 4, 15000);
INSERT INTO cf1
VALUES
(1, 5, 20000);
INSERT INTO cf1
VALUES
(1, 6, 25000);
INSERT INTO cf1
VALUES
(2, 1, -25000);
INSERT INTO cf1
VALUES
(2, 2, 25000);
INSERT INTO cf1
VALUES
(2, 3, 10000);
INSERT INTO cf1
VALUES
(2, 4, 15000);
INSERT INTO cf1
VALUES
(2, 5, 10000);
INSERT INTO cf1
VALUES
(2, 6, 5000);
INSERT INTO cf1
VALUES
(3, 1, -25000);
INSERT INTO cf1
VALUES
(3, 2, 5000);
INSERT INTO cf1
VALUES
(3, 3, 25000);
INSERT INTO cf1
VALUES
(3, 4, 10000);
INSERT INTO cf1
VALUES
(3, 5, 20000);
INSERT INTO cf1
VALUES
(3, 6, 15000);
Enter a SELECT statement to calculate the NPV for the 3 projects so as to compare the results, assuming a 10% rate:
select d.proj_no,
wct.NPV_q(.10, 'SELECT c.cf_amt
from cf1 c
where c.proj_no = ' + convert(char, d.proj_no)) as NPV
from cf1 d
group by d.proj_no;
Here is the result set.
{"columns":[{"field":"proj_no","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"},{"field":"NPV","headerClass":"ag-right-aligned-header","cellClass":"ag-right-aligned-cell"}],"rows":[{"proj_no":"1","NPV":"25693.5832297053"},{"proj_no":"2","NPV":"24723.8170178729"},{"proj_no":"3","NPV":"27903.4986658659"}]}