PV Function [VBA]

Returns the Present Value of an investment resulting from a series of regular payments.

warning

यस k, कार्य वा वस्तुले प्रयोगयोग्य कार्यक्रम कोडमा एक मोड्युलमा प्रयोग गरिएको Option VBASupport 1 विधानसहितका अगाडि सक्षम गरिएको छ।


Syntax:


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

Return value:

Double

Parameters:

दरआवधिक ब्याज दर हो ।

NPER अवधिहरूको जम्मा सङ्ख्या हो। जुन वार्षिकी भुक्तानी गरिन्छ ।

PMT प्रति अवधि नियमित गरिएको भुक्तानी हो.

FV (optional) is the future value of the loan / investment.

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.

त्रुटि सङ्केतहरू

5 अवैध कार्य-विधि कल

Example:


REM ***** BASIC *****
Option VBASupport 1
Sub ExamplePV
' Calculate the present value of an annuity that pays $1,000 per month over 6 years.
' Interest is 10% per year and each payment is made at the end of the month.
Dim pv1 As Double
pv1 = PV( 0.1/12, 72, -1000 )
print pv1 ' pv1 is calculated to be 53978,6654781073.
End Sub

कृपया हामीलाई समर्थन गर्नुहोस्!