LibreOffice 25.2 Help
Returns the future value of an investment based on periodic, constant payments and a constant interest rate (Future Value).
FV(Rate as Double, NPer as Double, Pmt as Double, [PV as Variant], [Due as Variant])
Double
Rate:འཁོར་ཡུན་ཁག་གི་ཁེ་སྤོགས།
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.
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