NPer Function [VBA]

Calculates the number of periods for a loan or investment.

warning

This constant, function or object is enabled with the statement Option VBASupport 1 placed before the executable program code in a module.


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.

Error codes:

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

Please support us!