DECLARE
@LoanAmount MONEY = '7537500.00'
,@ROI FLOAT = 11
,@Tenure NUMERIC(18,2) = 12
,@EMI MONEY
,@AMT MONEY
SET @ROI = (@ROI/100)/12
--EMI = [P x R x (1 + R)^N] / [(1 + R)^N - 1]
SELECT @EMI = ROUND((@LoanAmount * @ROI * POWER((1 + @ROI), @Tenure)) / (POWER((1 + @ROI), @Tenure) - 1),3)
SELECT @EMI
Output(EMI)
666176.751
First Query return the monthly installment of Loan Amount i.e. EMI.
--AMT = [EMI x (1 + R)^N - 1] / [R x (1 + R)^N]
SELECT @AMT = ROUND(@EMI * (POWER((1 + @ROI), @Tenure) - 1) / (@ROI * POWER((1 + @ROI), @Tenure)),2)
SELECT @AMT
Output
7537500.00
Second Query return the Loan Amount based on your monthly installment(EMI).
Note:-
P - Loan Amount
R - Rate of Interest
N - Tenure/Loan Period
EMI - Estimated Monthly Installment
Depend upon your requirement, you may change round off figure.
Note:-
P - Loan Amount
R - Rate of Interest
N - Tenure/Loan Period
EMI - Estimated Monthly Installment
Depend upon your requirement, you may change round off figure.
This comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
DeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteHelpful artical.
ReplyDeleteThanks for a well written and informative post.
10 Key Steps to Getting a Small Business Funding
This comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteHOw can i Calculate quaterly reducing loan,,.. can u help me please?
ReplyDeleteNICE QUERY TO CALCULATE EMI
ReplyDeleteTHANKS