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

Please support us!