FIX: Fv documentation. Some updates to the text

This commit is contained in:
Nicolás Hatcher
2024-12-08 11:11:48 +01:00
parent 8402bb0935
commit cb6685f72a

View File

@@ -28,15 +28,15 @@ If your interest rate varies between periods, use the [FVSCHEDULE](/functions/fi
<!--@include: ../markdown-snippets/error-type-details.md-->
## Details
* If *rate* = 0, FV solves the equation:
* If *rate* = 0, FV is given by the equation:
$$
FV = -pv - (pmt \times nper)
$$
* If *rate* <> 0 and *type* = 0, FV solves the equation:
* If *rate* <> 0 and *type* = 0, FV is given by the equation:
$$ FV = -pv \times (1 + rate)^{nper} - \dfrac{pmt\times\big({(1+rate)^{nper}-1}\big)}{rate}
$$
* If *rate* <> 0 and *type* <> 0, FV solves the equation:
* If *rate* <> 0 and *type* <> 0, FV is given by the equation:
$$ FV = -pv \times (1 + rate)^{nper} - \dfrac{pmt\times\big({(1+rate)^{nper}-1}\big) \times(1+rate)}{rate}
$$
## Examples