NOPLAT
简述
返回NOPLAT=EBIT*(1-所得税税率),EBIT为息税前利润
NOPLAT(RDate:Integer;type:Integer;T:Real):Real
名称 | 类型 | 说明 |
---|
RDate | Integer | 报告期。 |
Type | Integer | 用户自定义,EBIT计算方法
显示名 |
取值 |
营业利润+利息费用 |
1 |
净利润+所得税+利息费用 |
2 |
利润总额+利息费用 |
3 |
|
T | Real | 实数,税率(%) |
返回 | Real | 实数 |
//指定2017三季报,取万科A的NOPLAT
oV:=BackUpSystemParameters2();
setsysparam(pn_stock(),'SZ000002');
v:=NOPLAT(20170930,3,14.07);
return v;
//结果:19100284108.84