NPV function

  • 24 February 2023
  • 0 replies
  • 367 views

Userlevel 7
Badge +13

Description

Calculates the net present value of an investment based on future cashflows evenly spaced for a given time.

Syntax

 

NPV(Rate Metric, Payment Metric [, Compute All Cells] [, Ranking Dimension])

 

Argument Type Dimensions Description

Rate Metric

(required)

Number or Integer No Dimension or subset of Dimensions of Payment Metric

This is the discount rate. 

When defined on Ranking Dimension, a different rate will be used for each item of Payment Metric

Payment Metric

(required)

Number or Integer Ranking Dimension This represents the cashflow of the investment. Cashflow can be positive if there is income or negative if payments are needed.

Compute All Cells

(optional)

boolean No Dimension

Defines if the computation should be done on all Ranking Dimension’s items.

If TRUE, starts at the first non empty Ranking Dimension item until the last non empty.

If FALSE,  only on the first non empty item of Ranking Dimension is computed.

By default, set to FALSE.

Ranking Dimension

(optional)

Dimension (any kind)  

Required when Payment Metric is defined on multiple dimensions. 

Defines the dimension used to perform the calculation on.

 

Return type

Type Dimensions
Number No Dimension, or subset of Payment Metric’s Dimensions

 

If Compute All Cells is FALSE, will return for the first item of Ranking Dimension for which Payment Metric was not empty the sum of all future discounted payments.

 

If Compute All Cells is TRUE, will return for all items of Ranking Dimension the sum of future discounted payments.

 

In case you have a dataset where the payments & incomes happens on specific dates (and are not evenly spaced), you can not use the NPV formula. In that case, you need to use the XNPV formula.

 

 

The formula only considers the numeric values, and if there are blanks or text values, these would be ignored

 

The Pigment calculation of NPV excludes the initial investment and calculates the NPV for all the other future cash flows, if your cashflow starts during the same period of your initial investment it must be added. .

 

Examples

Formula Result Description
NPV('Single Variable','Investment Cashflow')

Click on image to enlarge.

Example with single Rate 

 

This example uses a single discount rate in the Rate Metric that has no dimensions, which is why its listed under Total.  The function returns the value in Jan 24, as this is when the first data is in the Payment Metric. However, you could also use this formula in a Metric without dimensions.
NPV('Variable Rates over time','Investment Cashflow')

Click on image to enlarge.

 

Example with variable Rate 

 

This example uses a Rate Metric that has variable discount rates over time.  The function returns the value in Jan 24, as this is when the first data is in the Payment Metric. However, you could also use this formula in a Metric without dimensions. 

NPV('Single Variable','Investment Cashflow by Country',TRUE,Country)

Click on image to enlarge.

Example with Single Rate, Multiple Dimensions in Payment Metric and Calculate all Cells True
This example uses a single discount rate in the Rate Metric that has no dimensions, which is why its listed under Total.  The Payment Metric in this example is dimensioned by Month and Country, with Country being the ranking dimension. Compute all cells is set to TRUE so calculations are performed across all items in the Ranking Dimension, in this example Country.
NPV('Single Variable','Investment Cashflow by Country',FALSE,Country)

Click on image to enlarge.

Example with Single Rate, Multiple Dimensions in Payment Metric and Calculate all Cells False

This example uses a single value Rate Metric that has no dimensions, which is why its listed under Total.  The Payment Metric in this example is dimensioned by Month and Country, with Country being the ranking dimension. Compute all cells is set to FALSE so calculations are performed on the first item with data in the Ranking dimension, in this example UK.

 

See also

Excel: NPV, XNPV

 

Related articles:  

XNPV


This topic has been closed for comments