IPmt Function [VBA]

Calculates the periodic amortizement for an investment with regular payments and a constant interest rate.

warning

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


Syntax:


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

Return value:

Double

Parameters:

གོང་ཚད་ དེ་ དུས་མཚམས་སྐྱེད་གོང་ཚད་ཨིན།

Per is the period, for which the compound interest is calculated. Period=NPER if compound interest for the last period is calculated.

NPER དེ་ ལོ་འཁོར་དངུལ་ཕོགས་དེ་ སྤྲོད་ཡོད་པའི་ དུས་ཡུན་ཚུའི་ གྱངས་ཁ་བསྡོམས་ཨིན།

PV དེ་ གླ་དངུལ་ཚུའི་འབྱུང་རིམ་ནང་ ད་ལྟོའི་དངུལ་རྐྱང་གནས་གོང་།

FV (གདམ་ཁ་ཅན་) དེ་ དུས་ཡུན་ཚུའི་མཇུག་ལུ་རེ་བ་སྐྱེ་ཡོད་པའི་གནས་གོང་(མ་འོངས་པའི་གནས་གོང་)།

Due (optional) is the due date for the periodic payments.

0 - the payment is due at the end of the period;

1 - the payment is due at the beginning of the period.

Error codes:

༥ ནུས་མེད་བྱ་སྒོའི་ལམ་ལུགས་བོད་བརྡ་

Example:


Sub ExampleIPmt
 Dim myIPmt As Double
 myIPmt = IPmt(0.05,5,7,15000)
 Print myIPmt ' returns -352.97 currency units. The compound interest during the fifth period (year) is 352.97 currency units.
End Sub

Please support us!