FV Function [VBA]

Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


Syntax:


FV(Rate as Double, NPer as Double, Pmt as Double, [PV as Variant], [Due as Variant])

Return value:

Double

Parameters:

អត្រា ជា​អត្រា​ការ​ប្រាក់​តាម​កាល​កំណត់ ។

NPer ជា​ចំនួន​សរុប​នៃ​អំឡុងពេល​​ (អំឡុងពេល​ការ​បង់​ប្រាក់​​) ។

Pmt គឺ​ជា​កា​រចំណាយ​ប្រចាំឆ្នាំ​យ៉ាង​ទៀតទាត់​ក្នុង​មួយ​រយៈពេល ។

PV (ជម្រើស) គឺ​ជា​តម្លៃសាច់ប្រាក់ (បច្ចុប្បន្ន) នៃ​កា​របណ្ដាក់​ទុន ។

Due (optional) defines whether the payment is due at the beginning or the end of a period.

0 - the payment is due at the end of the period;

1 - the payment is due at the beginning of the period.

Error codes:

5 ការ​ហៅ​បែបបទ​មិន​ត្រឹមត្រូវ

Example:


Sub ExampleFV
 Dim myFV As Double
 myFV = =FV(0.04, 2, 750, 2500)
 Print myFV ' returns 4234.00 currency units. The value at the end of the investment is 4234.00 currency units.
End Sub