|
-
Nov 24th, 2010, 10:49 AM
#1
Thread Starter
New Member
-
Nov 24th, 2010, 11:34 AM
#2
Hyperactive Member
Re: Formula
instead put a frm here, put the entire code...
-
Nov 24th, 2010, 12:14 PM
#3
Re: Formula
That total ($27.81) is the total interest paid for the loan at 3% annual interest rate. This is a monthly compound interest. If you just Google for "compound interest formula", you should find the formula right away.
And BTW, that value $27.81 is not correct. It should be $27.37.
Let us have faith that right makes might, and in that faith, let us, to the end, dare to do our duty as we understand it.
- Abraham Lincoln -
-
Nov 24th, 2010, 02:26 PM
#4
Re: Formula
Based on the fact that you have attached a form that would only work in VB6 and Earlier I have moved your thread to this section.
-
Nov 24th, 2010, 02:30 PM
#5
Re: Formula
 Originally Posted by helderjsd
instead put a frm here, put the entire code...
That's a vb6 form & code file he posted, I've already notified the admins that the thread is in the wrong subforum here.
Edit: and it's already moved, the price I pay for using tabbed browsing.
-
Nov 25th, 2010, 04:32 AM
#6
Re: Formula
I'd change the formulas as follows:
Code:
'Calculation (Monthly payment is calculted using CreditAmount*(1-(1 + InterestRatePerYear/PaymentsPerYear) ^(NumberofYears*PaymentsPerYear))
douInterest = douInterest / 100
a = curLoan - curDp
b = 1 + douInterest/intMonth
c = b ^ intMonth
d = 1-c
curInstallment = a*d
You're welcome to rate this post!
If your problem is solved, please use the Mark thread as resolved button
Wait, I'm too old to hurry!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|