NPer Function [VBA]

Calculates the number of periods for a loan or investment.

warning

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


Syntax:


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

Return value:

Double

Parameters:

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

PMTवार्षिकी प्रत्येक अवधिमा तिरिने नियमित भुक्तानी हो।

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
Sub ExampleNPer
 Dim period As Double
 period = NPer( 0.06, 153.75, 2600)
 Print period ' returns -12,02. The payment period covers 12.02 periods.
End Sub

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