funkytunaa
Technical User
Nice and simple function in access and excel is the PMT function.
I don't believe there is such a function when using SQL but I have found a workaround which calculates the same thing but I can't get it to work.
Below is the supposed Mathimatical equation that will give me the right figure
-n
(amt - x * (1 + rate) ) * rate
pmt(rate, n, amt, x) = -------------------------------
-n
1 - (1 + rate)
Could anyone help writing this out in SQL? I think I am stuffing up the "n" figure which is the number of payments. The number of payments is 60 which is a 5 year term.
Below is what I have currently.
(([TotalPayable]*(POWER((1+[InterestRate]),-[Term])))*[InterestRate])/(1-(POWER((1+[InterestRate]),-5))) As Monthly Amount
I'm fairly certain that I have it completely wrong....Which I can deal with....Well not really. It's driving me up the wall!!!
Cheers!!!
BTW You guys Rock!
I don't believe there is such a function when using SQL but I have found a workaround which calculates the same thing but I can't get it to work.
Below is the supposed Mathimatical equation that will give me the right figure
-n
(amt - x * (1 + rate) ) * rate
pmt(rate, n, amt, x) = -------------------------------
-n
1 - (1 + rate)
Could anyone help writing this out in SQL? I think I am stuffing up the "n" figure which is the number of payments. The number of payments is 60 which is a 5 year term.
Below is what I have currently.
(([TotalPayable]*(POWER((1+[InterestRate]),-[Term])))*[InterestRate])/(1-(POWER((1+[InterestRate]),-5))) As Monthly Amount
I'm fairly certain that I have it completely wrong....Which I can deal with....Well not really. It's driving me up the wall!!!
Cheers!!!
BTW You guys Rock!