AssetsNetProfitRatio
简述
总资产净利率(%)=净利润/(期初资产总额+期末资产总额)/2*100。
函数从合并利润分配表中取归属于母公司所有者的净利润,再从合并资产负债表中取期初和期末的资产总额,根据算法得到总资产净利率(%)。
AssetsNetProfitRatio(ReportDate:Integer):Real
名称 | 类型 | 说明 |
---|
ReportDate | Integer | 整数,报告期。 |
返回 | Real | 实数,总资产净利率(%),百分数。 |
//指定2011年报,取万科A总资产净利率(%)
oV:=BackUpSystemParameters2();
setsysparam(pn_stock(),'SZ000002');
v:=AssetsNetProfitRatio(20111231);
return v;
//结果:19.93