Pmt Function [VBA]

Calculates the constant periodic payments for a loan or investment.

warning

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


Syntax:


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

Return value:

Double

Parameters:

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

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

PV is the (present) cash value of an investment.

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
' Calculate the monthly payments to a loan that is to be paid in full over 6 years.
' Interest is 10% per year and payments are made at the end of the month.
Sub ExamplePmt
 Dim myPmt As Double
 myPmt = Pmt( 0.1/12, 72, 100000 )
 print MyPmt 'is calculated to be -1852,58377757705
End Sub

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