tv - Terminal Value

Prev Next

Function Names

tv

Description

Sorry, this function does not broadcast your favorite series.

This funtion calculates the terminal value based on the perpetual growth method.
tv = FCFn * (1+growth rate) / (WACC - growth rate)

Call as: function

Restrictions

Indirect parameter passing is disabled

Parameter count

3

Parameters

No.TypeDescription
1
input
numeral FCFn

Free Cash Flow value at year n

2
input
numeral Growth Rate

Perpetual growth rate of Free Cash Flow (FCF)

3
input
numeral WACC

Working Average Cost of Capital (WACC)

Return value

TypeDescription
numeral TV

Calculated Terminal Value

Exceptions

Division by zero error happens if WACC equals to the perpetual growth rate

Examples

      echo( tv ( 100, 0.05, 0.12 ) ); // Returns 1500

Output

1500
Try it yourself: Open LIB_Function_tv.b4p in B4P_Examples.zip. Decompress before use.

See also

irr