我有两个问题 2 问:-
(1).if principalamount =10,000 , Interest=4% abd Term=5Yrs(60 Months) 那么如何通过PMT函数找到EMI或者有什么函数可以找到??????
(2) 如果我有 EMI=350,Term=5yrs(60 Months) 和 Interest=4% 那么如何找到本金????
5
我有两个问题 2 问:-
(1).if principalamount =10,000 , Interest=4% abd Term=5Yrs(60 Months) 那么如何通过PMT函数找到EMI或者有什么函数可以找到??????
(2) 如果我有 EMI=350,Term=5yrs(60 Months) 和 Interest=4% 那么如何找到本金????
5
花了一些时间才知道 EMI 是“等量的每月分期付款”,所以如果这意味着我认为的那样,您可以使用该MORT
功能,记录在这里。
对于第一季度:
data _null_;
principal = 10000;
interest = .04/12; /* Monthly rate */
term = 60;
payment = .;
payment = mort(principal, payment , interest, term);
put payment=;
run;
对于第二季度:
data _null_;
principal = .;
interest = .04/12; /* Monthly rate */
term = 60;
payment = 350;
principal = mort(principal, payment, interest, term);
put principal=;
run;
请注意,该MORT
函数返回缺少的任何值。