Help & Support
Contents
Display Legacy Contents

Search:

Home > Impact Suite > Math > Financial Functions

Financial Functions

Impact suite supports all the financial functions in the Microsoft Financial class as described here:

http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.financial(v=vs.110).aspx


Here is a quick example of a math formula

Dim Rate as Decimal = 6D
Dim NPer as Integer = 240
Dim PV as Decimal = 100000
Dim FV as Decimal = 0
Dim Due as Decimal = 1
Return Microsoft.VisualBasic.Financial.Pmt(Rate, NPer, PV, FV,Due) 



Here is another example

Dim N As Integer
Dim amt, rate As Double
amt = Val(Txt_loan.Text)
rate = (Val(Txt_Int.Text) / 100) / 12
N = Val(Txt_N.Text) * 12
Return  Pmt(rate, N, -amt, 0, 0)


Properties
Article ID:
financial_functions
Views: 164
Created By: jimdurkin
Modified By: [Modified By]
Created Date: 6/4/2014 7:02 PM
Last Modified: 6/4/2014 7:05 PM
Actions
Print This Article
Bookmark
Email This Article
Previous Article
Next Article